grs
This commit is contained in:
parent
6b4410052b
commit
e93728cdc5
1 changed files with 9 additions and 8 deletions
|
@ -212,16 +212,17 @@ alias grms='git remote show'
|
|||
alias grmu='git remote set-url'
|
||||
|
||||
# remove file(s) from index or move current branch pointer
|
||||
alias grs='git reset'
|
||||
|
||||
# move current branch pointer to the development branch
|
||||
alias grsd='git reset dev'
|
||||
alias grs="\
|
||||
git \
|
||||
reset \
|
||||
"
|
||||
|
||||
# wipe modifications or reset current branch to another commit
|
||||
alias grsh='git reset --hard'
|
||||
|
||||
# reset current branch to the development branch
|
||||
alias grshd='git reset --hard dev'
|
||||
alias grsh="\
|
||||
git \
|
||||
reset \
|
||||
--hard \
|
||||
"
|
||||
|
||||
# current state of repository
|
||||
alias gs='git status --untracked-files=all'
|
||||
|
|
Loading…
Reference in a new issue