Skip to content

Instantly share code, notes, and snippets.

@nekonenene
Last active August 9, 2020 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nekonenene/2adc55c1fd8e47029f4e to your computer and use it in GitHub Desktop.
Save nekonenene/2adc55c1fd8e47029f4e to your computer and use it in GitHub Desktop.
ブログ公開用データ: .gitconfig の一例
[url "git@github.com:"]
pushInsteadOf = https://github.com/ # use SSH
[user]
name = ハトネコエ
email = hatonekoe@gmail.com
[alias]
st = status
co = checkout
sw = switch
br = branch
a = add
c = commit
p = push
f = fetch
m = merge
sm = submodule
pl = pull --rebase
cl = clone --recursive
l3 = log -3
l5 = log -5
l7 = log -7
[core]
editor = emacs
autocrlf = false
[color]
ui = auto
[push]
default = upstream
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment