Skip to content

Commit

Permalink
refactor(sh): aliases_git - new glont alias
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonos committed Oct 8, 2023
1 parent 93a5f78 commit 6e45e33
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .assets/config/bash_cfg/aliases_git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ alias glon='git log --oneline --decorate'
alias glona='git log --oneline --decorate --all'
alias glong='git log --oneline --decorate --graph'
alias glonga='git log --oneline --decorate --graph --all'
alias glont='git log --oneline --decorate --no-walk --tags="*"'
alias glop='git log --pretty='\''%C(yellow)%h%C(reset) %C(green)(%ai)%C(reset)%C(red)%d%C(reset) %s %C(bold blue)<%ae>%C(reset)'\'' --abbrev-commit'
alias glopa='git log --pretty='\''%C(yellow)%h%C(reset) %C(green)(%ai)%C(reset)%C(red)%d%C(reset) %s %C(bold blue)<%ae>%C(reset)'\'' --abbrev-commit --all'
alias glos='git log --stat'
Expand Down Expand Up @@ -181,9 +182,9 @@ alias gstb='git status -sb'
alias gsts='git status -s'
alias gsvnd='git svn dcommit'
alias gsvnr='git svn rebase'
alias gt='git tag --sort=v:refname'
alias gt='git tag --sort=-v:refname'
alias gts='git tag --sign'
alias gtr="git for-each-ref refs/tags/ --sort=v:refname --format='%1B[33m%(objectname:short)%1B[m %1B[31m%(refname:short)%1B[m %(subject) %1B[1;94m%(authorname)%1B[m %1B[36m%(authoremail)%1B[m'"
alias gtr="git for-each-ref refs/tags/ --sort=-v:refname --format='%1B[33m%(objectname:short)%1B[m %1B[31m%(refname:short)%1B[m %(subject) %1B[1;94m%(authorname)%1B[m %1B[36m%(authoremail)%1B[m'"
alias gunignore='git update-index --no-assume-unchanged'
alias gunwip='git log -n 1 | grep -q -c "\-\-wip\-\-" && git reset HEAD~1'
alias gwch='git whatchanged -p --abbrev-commit --pretty=medium'
Expand Down

0 comments on commit 6e45e33

Please sign in to comment.