Add more options to .gitconfig

Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
Severin Kaderli 2016-09-12 21:16:03 +02:00
parent 035ca90868
commit 7a3998f012

View file

@ -3,7 +3,18 @@
name = Severin Kaderli name = Severin Kaderli
[alias] [alias]
# Display the history of the latest 20 commits
l = log --pretty=oneline -n 20 --graph --abbrev-commit l = log --pretty=oneline -n 20 --graph --abbrev-commit
# Shortcut for status
s = status s = status
# Add all files
a = add --all a = add --all
# Create a commit and sign it off
c = commit -s -m c = commit -s -m
[color]
# Activate color use in git commands
ui = auto