mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-08-05 08:37:46 +00:00
change the string interpolation in git aliases (#735)
Change the git log string interpolation for git aliases.
This commit is contained in:
parent
42c6efb0a3
commit
490cee7997
1 changed files with 5 additions and 5 deletions
|
@ -102,13 +102,13 @@ export alias glgg = git log --graph
|
||||||
export alias glgga = git log --graph --decorate --all
|
export alias glgga = git log --graph --decorate --all
|
||||||
export alias glgm = git log --graph --max-count=10
|
export alias glgm = git log --graph --max-count=10
|
||||||
export alias glo = git log --oneline --decorate
|
export alias glo = git log --oneline --decorate
|
||||||
export alias glod = git log --graph --pretty='%Cred%h%Creset -%C(char lp)auto(char rp)%d%Creset %s %Cgreen(char lp)%ad(char rp) %C(char lp)bold blue(char rp)<%an>%Creset'
|
export alias glod = git log --graph $'--pretty=%Cred%h%Creset -%C(char lp)auto(char rp)%d%Creset %s %Cgreen(char lp)%ad(char rp) %C(char lp)bold blue(char rp)<%an>%Creset'
|
||||||
export alias glods = git log --graph --pretty='%Cred%h%Creset -%C(char lp)auto(char rp)%d%Creset %s %Cgreen(char lp)%ad(char rp) %C(char lp)bold blue(char rp)<%an>%Creset' --date=short
|
export alias glods = git log --graph $'--pretty=%Cred%h%Creset -%C(char lp)auto(char rp)%d%Creset %s %Cgreen(char lp)%ad(char rp) %C(char lp)bold blue(char rp)<%an>%Creset' --date=short
|
||||||
export alias glog = git log --oneline --decorate --graph
|
export alias glog = git log --oneline --decorate --graph
|
||||||
export alias gloga = git log --oneline --decorate --graph --all
|
export alias gloga = git log --oneline --decorate --graph --all
|
||||||
export alias glol = git log --graph --pretty='%Cred%h%Creset -%C(char lp)auto(char rp)%d%Creset %s %Cgreen(char lp)%ar(char rp) %C(char lp)bold blue(char rp)<%an>%Creset'
|
export alias glol = git log --graph $'--pretty=%Cred%h%Creset -%C(char lp)auto(char rp)%d%Creset %s %Cgreen(char lp)%ar(char rp) %C(char lp)bold blue(char rp)<%an>%Creset'
|
||||||
export alias glola = git log --graph --pretty='%Cred%h%Creset -%C(char lp)auto(char rp)%d%Creset %s %Cgreen(char lp)%ar(char rp) %C(char lp)bold blue(char rp)<%an>%Creset' --all
|
export alias glola = git log --graph $'--pretty=%Cred%h%Creset -%C(char lp)auto(char rp)%d%Creset %s %Cgreen(char lp)%ar(char rp) %C(char lp)bold blue(char rp)<%an>%Creset' --all
|
||||||
export alias glols = git log --graph --pretty='%Cred%h%Creset -%C(char lp)auto(char rp)%d%Creset %s %Cgreen(char lp)%ar(char rp) %C(char lp)bold blue(char rp)<%an>%Creset' --stat
|
export alias glols = git log --graph $'--pretty=%Cred%h%Creset -%C(char lp)auto(char rp)%d%Creset %s %Cgreen(char lp)%ar(char rp) %C(char lp)bold blue(char rp)<%an>%Creset' --stat
|
||||||
|
|
||||||
export alias gm = git merge
|
export alias gm = git merge
|
||||||
export alias gmtl = git mergetool --no-prompt
|
export alias gmtl = git mergetool --no-prompt
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue