This commit is contained in:
Marc Beninca 2025-07-04 17:28:03 +02:00
parent 20ad290b1b
commit 75fa712be4
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -516,14 +516,6 @@ a__git_re_set_hard() {
"${@}" "${@}"
} }
# show a commit
gsc() { a__git_show_commit "${@}"; }
a__git_show_commit() {
git \
show \
"${@}"
}
# current state of repository # current state of repository
gs() { a__git_status "${@}"; } gs() { a__git_status "${@}"; }
a__git_status() { a__git_status() {
@ -533,6 +525,14 @@ a__git_status() {
"${@}" "${@}"
} }
# show a commit
gsc() { a__git_show_commit "${@}"; }
a__git_show_commit() {
git \
show \
"${@}"
}
# tag a commit # tag a commit
gt() { a__git_tag "${@}"; } gt() { a__git_tag "${@}"; }
a__git_tag() { a__git_tag() {