This commit is contained in:
Marc Beninca 2023-05-14 22:16:55 +02:00
parent 64c39902a6
commit db5874722a

View file

@ -109,10 +109,18 @@ cherry-pick \
" "
# configure the user name # configure the user name
alias gcun='git config user.name' alias gcun="\
git \
config \
user.name \
"
# configure the user email # configure the user email
alias gcue='git config user.email' alias gcue="\
git \
config \
user.email \
"
# differences from last or between commits # differences from last or between commits
alias gd="\ alias gd="\