parent
4224c2a1af
commit
a570f4b7f3
@ -104,11 +104,15 @@ ggl() {
|
|||||||
git pull origin "${b:=$1}"
|
git pull origin "${b:=$1}"
|
||||||
}
|
}
|
||||||
compdef _git ggl=git-checkout
|
compdef _git ggl=git-checkout
|
||||||
|
alias ggpull='ggl'
|
||||||
|
compdef _git ggpull=git-checkout
|
||||||
ggp() {
|
ggp() {
|
||||||
[[ "$#" != 1 ]] && b="$(current_branch)"
|
[[ "$#" != 1 ]] && b="$(current_branch)"
|
||||||
git push origin "${b:=$1}"
|
git push origin "${b:=$1}"
|
||||||
}
|
}
|
||||||
compdef _git ggp=git-checkout
|
compdef _git ggp=git-checkout
|
||||||
|
alias ggpush='ggp'
|
||||||
|
compdef _git ggpush=git-checkout
|
||||||
ggpnp() {
|
ggpnp() {
|
||||||
ggl "$1" && ggp "$1"
|
ggl "$1" && ggp "$1"
|
||||||
}
|
}
|
||||||
@ -119,6 +123,8 @@ ggu() {
|
|||||||
git pull --rebase origin "${b:=$1}"
|
git pull --rebase origin "${b:=$1}"
|
||||||
}
|
}
|
||||||
compdef _git ggu=git-checkout
|
compdef _git ggu=git-checkout
|
||||||
|
alias ggpur='ggu'
|
||||||
|
compdef _git ggpur=git-checkout
|
||||||
|
|
||||||
alias gignore='git update-index --assume-unchanged'
|
alias gignore='git update-index --assume-unchanged'
|
||||||
alias gignored='git ls-files -v | grep "^[[:lower:]]"'
|
alias gignored='git ls-files -v | grep "^[[:lower:]]"'
|
||||||
|
Loading…
Reference in New Issue
Block a user