dotfiles/.gitconfig
Severin Kaderli 7a3998f012 Add more options to .gitconfig
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
2016-09-12 21:16:03 +02:00

20 lines
360 B
INI

[user]
email = severin.kaderli@gmail.com
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