This commit is contained in:
Marc Beninca 2024-11-17 02:58:43 +01:00
parent 5f23aadfe5
commit 033999e9f6
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -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() {