gcp
This commit is contained in:
parent
81616ae770
commit
a8d4d6373e
1 changed files with 14 additions and 3 deletions
|
@ -91,13 +91,24 @@ alias gcod='git checkout dev'
|
||||||
alias gcof='git checkout f'
|
alias gcof='git checkout f'
|
||||||
|
|
||||||
# pick a commit
|
# pick a commit
|
||||||
alias gcp='git cherry-pick'
|
alias gcp="\
|
||||||
|
git \
|
||||||
|
cherry-pick \
|
||||||
|
"
|
||||||
|
|
||||||
# abort the commit pick
|
# abort the commit pick
|
||||||
alias gcpa='git cherry-pick --abort'
|
alias gcpa="\
|
||||||
|
git \
|
||||||
|
cherry-pick \
|
||||||
|
--abort \
|
||||||
|
"
|
||||||
|
|
||||||
# continue the commit pick
|
# continue the commit pick
|
||||||
alias gcpc='git cherry-pick --continue'
|
alias gcpc="\
|
||||||
|
git \
|
||||||
|
cherry-pick \
|
||||||
|
--continue \
|
||||||
|
"
|
||||||
|
|
||||||
# configure the user name
|
# configure the user name
|
||||||
alias gcun='git config user.name'
|
alias gcun='git config user.name'
|
||||||
|
|
Loading…
Reference in a new issue