From 0eedc97f79e5f2d0c47190dd6e891c8a93a733ec Mon Sep 17 00:00:00 2001 From: Guillaume DOTT Date: Mon, 7 Jul 2014 14:47:00 +0200 Subject: [PATCH] git: add stash aliases --- git/gitconfig.include | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/git/gitconfig.include b/git/gitconfig.include index 00332cb..38ef20e 100644 --- a/git/gitconfig.include +++ b/git/gitconfig.include @@ -8,9 +8,13 @@ pr = pull --rebase dc = diff --cached r = remote - lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative + lg = log --graph --pretty=tformat:'%C(red)%h%C(yellow)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%aN>%Creset' --abbrev-commit --date=relative ll = log --stat --abbrev-commit amend = commit --amend -C HEAD + + s = stash + sl = stash list + ss = stash show [diff] tool = vimdiff [merge] @@ -19,4 +23,8 @@ keepBackup = false [credential] helper = cache +[help] + autocorrect = -1 +[rerere] + enabled = true # vim: set filetype=gitconfig: