Fix gitconfig and add one alias

Signoff added by default (can be deleted as needed) and added an
option for amending a committed commit which hasn't been pushed.

Signed-off-by: Yongmin Hong <revi@pobox.com>
This commit is contained in:
revi 2016-09-24 00:06:02 +09:00
parent b87fd53bc7
commit 8ee415531a
Signed by: revi
GPG key ID: 48AE727894A6F064

View file

@ -4,7 +4,7 @@
signingkey = BEFF197A signingkey = BEFF197A
[alias] [alias]
co = checkout co = checkout
cm = commit -S cm = commit -S -s
st = status st = status
br = branch -v br = branch -v
fa = fetch --all fa = fetch --all
@ -12,3 +12,4 @@
usync = rebase upstream/master usync = rebase upstream/master
aal = add * aal = add *
po = push origin master po = push origin master
amend = commit --amend -S -s