From 7a3998f0124127009894ffcaacf31a3f0518762c Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Mon, 12 Sep 2016 21:16:03 +0200 Subject: [PATCH] Add more options to .gitconfig Signed-off-by: Severin Kaderli --- .gitconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitconfig b/.gitconfig index a33a10d..d30dc78 100644 --- a/.gitconfig +++ b/.gitconfig @@ -3,7 +3,18 @@ name = Severin Kaderli [alias] + # Display the history of the latest 20 commits l = log --pretty=oneline -n 20 --graph --abbrev-commit + + # Shortcut for status s = status + + # Add all files a = add --all + + # Create a commit and sign it off c = commit -s -m + +[color] + # Activate color use in git commands + ui = auto