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:
revi 2017-05-29 02:41:05 +09:00
parent cf8b8b42cb
commit 60cc2c5a6a
Signed by: revi
GPG key ID: 48AE727894A6F064
2 changed files with 11 additions and 11 deletions

11
.gitaliases Normal file
View 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

View file

@ -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