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
|
# current state of repository
|
||||||
alias gs="\
|
gs() {
|
||||||
git \
|
git \
|
||||||
status \
|
status \
|
||||||
--untracked-files=all \
|
--untracked-files="all" \
|
||||||
"
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# show a commit
|
# show a commit
|
||||||
alias gsc="\
|
gsc() {
|
||||||
git \
|
git \
|
||||||
show \
|
show \
|
||||||
"
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# tag a commit
|
# tag a commit
|
||||||
gt() {
|
gt() {
|
||||||
|
|
Loading…
Reference in a new issue