From cd13a05a0159f91eb7fccd1e0d8e402673c9d3c3 Mon Sep 17 00:00:00 2001 From: MadMaurice Date: Sun, 7 Jul 2019 23:10:46 +0200 Subject: [PATCH] git - Add two aliases lga - lg with --all ca - commit --amend --- git/.gitconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git/.gitconfig b/git/.gitconfig index e9258b8..56c06db 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -5,10 +5,12 @@ default = current [alias] lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit + lga = lg --all s = status -sb a = add c = commit co = checkout + ca = commit --amend ps = push pl = pull uncommit = reset --soft HEAD~