From 8ee415531a2815e8d11366deae013eca0f67c064 Mon Sep 17 00:00:00 2001 From: Yongmin Hong Date: Sat, 24 Sep 2016 00:06:02 +0900 Subject: [PATCH] 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 --- gitconfig.sample | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gitconfig.sample b/gitconfig.sample index 7f71167..8600222 100644 --- a/gitconfig.sample +++ b/gitconfig.sample @@ -4,7 +4,7 @@ signingkey = BEFF197A [alias] co = checkout - cm = commit -S + cm = commit -S -s st = status br = branch -v fa = fetch --all @@ -12,3 +12,4 @@ usync = rebase upstream/master aal = add * po = push origin master + amend = commit --amend -S -s