Add more options to .gitconfig
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
035ca90868
commit
7a3998f012
1 changed files with 11 additions and 0 deletions
11
.gitconfig
11
.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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue