Created
June 14, 2013 07:13
-
-
Save yoshifumi0521/5780045 to your computer and use it in GitHub Desktop.
Gitのエイリアス設定。~/.gitconfigで設定。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#~/.gitconfig | |
[alias] | |
co = checkout | |
ci = commit | |
st = status | |
br = branch | |
hist = log --pretty=format:\\\"%h %ad | %s%d [%an]\\\" --graph --date=short | |
ad = add | |
di = diff | |
dic = diff --cached | |
ps = push | |
pl = pull | |
me = merge | |
fe = fetch | |
sh = stash | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment