gcue,gcun

This commit is contained in:
Marc Beninca 2024-11-16 18:54:56 +01:00
parent 3554f0b905
commit c5185768b0
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -152,19 +152,21 @@ gcpc() {
"${@}" "${@}"
} }
# configure the user name
alias gcun="\
git \
config \
user.name \
"
# configure the user email # configure the user email
alias gcue="\ gcue() {
git \ git \
config \ config \
user.email \ "user.email" \
" "${@}"
}
# configure the user name
gcun() {
git \
config \
"user.name" \
"${@}"
}
# differences from last or between commits # differences from last or between commits
alias gd="\ alias gd="\