git/clone,commit

This commit is contained in:
Marc Beninca 2023-05-18 12:34:05 +02:00
parent 3e924813c8
commit d7bee96329

View file

@ -56,6 +56,12 @@ branch \
--set-upstream-to \
"
# clone a remote repository
alias gc="\
git \
clone \
"
# clean untracked files
alias gcf="\
git \
@ -65,14 +71,14 @@ clean \
"
# commit the index
alias gc="\
alias gcm="\
git \
commit \
--message \
"
# redo the last commit with a different message
alias gca="\
alias gcma="\
git \
commit \
--amend \
@ -80,7 +86,7 @@ commit \
"
# make a root commit
alias gce="\
alias gcme="\
git \
commit \
--allow-empty \
@ -89,7 +95,7 @@ commit \
"
# commit the index and sign
alias gcs="\
alias gcms="\
git \
commit \
--gpg-sign \