Swap aliases gsd and gsL
This commit is contained in:
parent
d4e78d427a
commit
75c0d49f56
|
@ -170,10 +170,9 @@ Aliases
|
||||||
- `gsa` applies the changes recorded in a stash to the working directory.
|
- `gsa` applies the changes recorded in a stash to the working directory.
|
||||||
- `gsx` drops a stashed state.
|
- `gsx` drops a stashed state.
|
||||||
- `gsX` drops all the stashed states.
|
- `gsX` drops all the stashed states.
|
||||||
- `gsd` lists dropped stashed states.
|
|
||||||
- `gsl` lists stashed states.
|
- `gsl` lists stashed states.
|
||||||
- `gsL` displays the changes recorded in the stash as a diff between the
|
- `gsL` lists dropped stashed states.
|
||||||
stashed state and its original parent.
|
- `gsd` displays changes between the stash and its original parent.
|
||||||
- `gsp` removes and applies a single stashed state from the stash list.
|
- `gsp` removes and applies a single stashed state from the stash list.
|
||||||
- `gsr` recovers a given stashed state.
|
- `gsr` recovers a given stashed state.
|
||||||
- `gss` stashes the changes of the dirty working directory, including untracked.
|
- `gss` stashes the changes of the dirty working directory, including untracked.
|
||||||
|
|
|
@ -147,9 +147,9 @@ alias gs='git stash'
|
||||||
alias gsa='git stash apply'
|
alias gsa='git stash apply'
|
||||||
alias gsx='git stash drop'
|
alias gsx='git stash drop'
|
||||||
alias gsX='git-stash-clear-interactive'
|
alias gsX='git-stash-clear-interactive'
|
||||||
alias gsd='git-stash-dropped'
|
|
||||||
alias gsl='git stash list'
|
alias gsl='git stash list'
|
||||||
alias gsL='git stash show --patch --stat'
|
alias gsL='git-stash-dropped'
|
||||||
|
alias gsd='git stash show --patch --stat'
|
||||||
alias gsp='git stash pop'
|
alias gsp='git stash pop'
|
||||||
alias gsr='git-stash-recover'
|
alias gsr='git-stash-recover'
|
||||||
alias gss='git stash save --include-untracked'
|
alias gss='git stash save --include-untracked'
|
||||||
|
|
Loading…
Reference in a new issue