gma,gmc,gmf,gms,gmt
This commit is contained in:
parent
0eea7d052e
commit
235202a64d
1 changed files with 30 additions and 25 deletions
|
@ -294,39 +294,44 @@ glp() {
|
|||
}
|
||||
|
||||
# abort the current merge commit
|
||||
alias gma="\
|
||||
gma() {
|
||||
git \
|
||||
merge \
|
||||
--abort \
|
||||
"
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# do a merge commit
|
||||
alias gmc="\
|
||||
gmc() {
|
||||
git \
|
||||
merge \
|
||||
--no-ff \
|
||||
--message \
|
||||
"
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# fast-forward to remote branch
|
||||
alias gmf="\
|
||||
gmf() {
|
||||
git \
|
||||
merge \
|
||||
--ff-only \
|
||||
"
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# squash a branch and index its modifications
|
||||
alias gms="\
|
||||
gms() {
|
||||
git \
|
||||
merge \
|
||||
--squash \
|
||||
"
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# merge via external tool
|
||||
alias gmt="\
|
||||
gmt() {
|
||||
git \
|
||||
mergetool \
|
||||
"
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# push to the remote repository
|
||||
alias gp="\
|
||||
|
|
Loading…
Reference in a new issue