aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--git/.config/git/config3
1 files changed, 1 insertions, 2 deletions
diff --git a/git/.config/git/config b/git/.config/git/config
index 8564a43..2efb934 100644
--- a/git/.config/git/config
+++ b/git/.config/git/config
@@ -78,8 +78,7 @@ redate = rebase --committer-date-is-author-date
# log commands
lg = log --graph --oneline --decorate --branches --remotes --tags --abbrev-commit
-ls = log --pretty=format:"%C(green)%h\\ %C(yellow)[%ad]%Cred%d\\ %Creset%s%Cblue\\ [%an]" --decorate --date=relative
-ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [a:%an,c:%cn]" --decorate --numstat
+ll = log --stat --oneline --decorate --branches --remotes --tags --abbrev-commit
# undo http://megakemp.com/2016/08/25/git-undo/
undo = "!f() { git reset --soft $(git rev-parse --abbrev-ref HEAD)@{${1-1}}; }; f"