summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-02-15 01:01:30 -0600
committerToby Vincent <tobyv13@gmail.com>2022-02-15 01:01:30 -0600
commit775543b45b61ad50f07dd02e74adc9d8e44b59a7 (patch)
treecbff09566d400b46f7846115c3a818037d037f52
parentde19d788a3addd3854401ce953e18f9214b12f4b (diff)
feat: removed stashes from git lg alias
-rw-r--r--gitconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitconfig b/gitconfig
index aad1163..4dbd04b 100644
--- a/gitconfig
+++ b/gitconfig
@@ -50,7 +50,7 @@ recommit = commit --amend -C HEAD
redate = rebase --committer-date-is-author-date
# log commands
-lg = log --graph --oneline --decorate --all --abbrev-commit
+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
watch = "!f() { watch -c 'git -c color.ui=always lg | sed \"s/\\[m/\\[00m/\"'; }; f"