Move git aliases out of gitconfig
So it can be more effective. Signed-off-by: Yongmin Hong <revi@pobox.com>
This commit is contained in:
parent
cf8b8b42cb
commit
60cc2c5a6a
2 changed files with 11 additions and 11 deletions
11
.gitaliases
Normal file
11
.gitaliases
Normal file
|
@ -0,0 +1,11 @@
|
|||
[alias]
|
||||
co = checkout
|
||||
cm = commit -S -s
|
||||
st = status
|
||||
br = branch -v
|
||||
fa = fetch --all
|
||||
graph = log --pretty=format:\"%h %s\" --graph
|
||||
usync = rebase upstream/master
|
||||
aal = add *
|
||||
po = push origin master
|
||||
amend = commit --amend -S -s
|
|
@ -2,14 +2,3 @@
|
|||
name = Yongmin Hong
|
||||
email = revi@pobox.com
|
||||
signingkey = BEFF197A
|
||||
[alias]
|
||||
co = checkout
|
||||
cm = commit -S -s
|
||||
st = status
|
||||
br = branch -v
|
||||
fa = fetch --all
|
||||
graph = log --pretty=format:\"%h %s\" --graph
|
||||
usync = rebase upstream/master
|
||||
aal = add *
|
||||
po = push origin master
|
||||
amend = commit --amend -S -s
|
||||
|
|
Loading…
Reference in a new issue