gb,gbd,gbdf,gbl,gbs
This commit is contained in:
parent
ecb6a686f2
commit
1ddba59759
1 changed files with 33 additions and 28 deletions
|
@ -31,42 +31,47 @@ gap() {
|
||||||
}
|
}
|
||||||
|
|
||||||
# create a branch
|
# create a branch
|
||||||
alias gb="\
|
gb() {
|
||||||
git \
|
git \
|
||||||
branch \
|
branch \
|
||||||
"
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# delete a branch
|
# delete a branch
|
||||||
alias gbd="\
|
gbd() {
|
||||||
git \
|
git \
|
||||||
branch \
|
branch \
|
||||||
--delete \
|
--delete \
|
||||||
"
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# force a branch deletion
|
# force a branch deletion
|
||||||
alias gbdf="\
|
gbdf() {
|
||||||
git \
|
git \
|
||||||
branch \
|
branch \
|
||||||
--delete \
|
--delete \
|
||||||
--force \
|
--force \
|
||||||
"
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# list branches
|
# list branches
|
||||||
alias gbl="\
|
gbl() {
|
||||||
git \
|
git \
|
||||||
branch \
|
branch \
|
||||||
--all \
|
--all \
|
||||||
--list \
|
--list \
|
||||||
--verbose \
|
--verbose \
|
||||||
--verbose \
|
--verbose \
|
||||||
"
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# set the link to a remote branch from a local branch
|
# set the link to a remote branch from a local branch
|
||||||
alias gbsu="\
|
gbs() {
|
||||||
git \
|
git \
|
||||||
branch \
|
branch \
|
||||||
--set-upstream-to \
|
--set-upstream-to \
|
||||||
"
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# clone a remote repository
|
# clone a remote repository
|
||||||
alias gc="\
|
alias gc="\
|
||||||
|
|
Loading…
Reference in a new issue