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
|
||||
alias gb="\
|
||||
gb() {
|
||||
git \
|
||||
branch \
|
||||
"
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# delete a branch
|
||||
alias gbd="\
|
||||
gbd() {
|
||||
git \
|
||||
branch \
|
||||
--delete \
|
||||
"
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# force a branch deletion
|
||||
alias gbdf="\
|
||||
gbdf() {
|
||||
git \
|
||||
branch \
|
||||
--delete \
|
||||
--force \
|
||||
"
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# list branches
|
||||
alias gbl="\
|
||||
gbl() {
|
||||
git \
|
||||
branch \
|
||||
--all \
|
||||
--list \
|
||||
--verbose \
|
||||
--verbose \
|
||||
"
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# set the link to a remote branch from a local branch
|
||||
alias gbsu="\
|
||||
gbs() {
|
||||
git \
|
||||
branch \
|
||||
--set-upstream-to \
|
||||
"
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# clone a remote repository
|
||||
alias gc="\
|
||||
|
|
Loading…
Reference in a new issue