gs,gsc
This commit is contained in:
parent
5f23aadfe5
commit
033999e9f6
1 changed files with 11 additions and 9 deletions
|
@ -443,17 +443,19 @@ grsh() {
|
|||
}
|
||||
|
||||
# current state of repository
|
||||
alias gs="\
|
||||
git \
|
||||
status \
|
||||
--untracked-files=all \
|
||||
"
|
||||
gs() {
|
||||
git \
|
||||
status \
|
||||
--untracked-files="all" \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# show a commit
|
||||
alias gsc="\
|
||||
git \
|
||||
show \
|
||||
"
|
||||
gsc() {
|
||||
git \
|
||||
show \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# tag a commit
|
||||
gt() {
|
||||
|
|
Loading…
Reference in a new issue