2020-10-03 11:29:26 -07:00
|
|
|
# Git version checking
|
|
|
|
autoload -Uz is-at-least
|
2020-10-04 04:09:32 -07:00
|
|
|
git_version="${${(As: :)$(git version 2>/dev/null)}[3]}"
|
2020-10-03 11:29:26 -07:00
|
|
|
|
2013-07-12 06:26:04 -07:00
|
|
|
#
|
|
|
|
# Functions
|
|
|
|
#
|
|
|
|
|
2015-06-25 12:04:01 -07:00
|
|
|
# The name of the current branch
|
|
|
|
# Back-compatibility wrapper for when this function was defined here in
|
|
|
|
# the plugin, before being pulled in to core lib/git.zsh as git_current_branch()
|
|
|
|
# to fix the core -> git plugin dependency.
|
2013-07-12 06:26:04 -07:00
|
|
|
function current_branch() {
|
2015-06-25 12:04:01 -07:00
|
|
|
git_current_branch
|
2013-07-12 06:26:04 -07:00
|
|
|
}
|
2019-05-21 01:57:37 -07:00
|
|
|
|
2013-07-12 06:26:04 -07:00
|
|
|
# Pretty log messages
|
|
|
|
function _git_log_prettily(){
|
|
|
|
if ! [ -z $1 ]; then
|
|
|
|
git log --pretty=$1
|
|
|
|
fi
|
|
|
|
}
|
2019-05-21 01:57:37 -07:00
|
|
|
compdef _git _git_log_prettily=git-log
|
|
|
|
|
2013-07-12 06:26:04 -07:00
|
|
|
# Warn if the current branch is a WIP
|
|
|
|
function work_in_progress() {
|
|
|
|
if $(git log -n 1 2>/dev/null | grep -q -c "\-\-wip\-\-"); then
|
|
|
|
echo "WIP!!"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-07-15 08:02:49 -07:00
|
|
|
# Check if main exists and use instead of master
|
2020-07-03 10:03:04 -07:00
|
|
|
function git_main_branch() {
|
2020-12-08 10:25:42 -07:00
|
|
|
command git rev-parse --git-dir &>/dev/null || return
|
2020-11-12 08:17:28 -07:00
|
|
|
local branch
|
|
|
|
for branch in main trunk; do
|
|
|
|
if command git show-ref -q --verify refs/heads/$branch; then
|
|
|
|
echo $branch
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo master
|
2020-07-03 10:03:04 -07:00
|
|
|
}
|
|
|
|
|
2013-07-12 06:26:04 -07:00
|
|
|
#
|
2010-06-03 12:03:26 -07:00
|
|
|
# Aliases
|
2013-07-12 06:26:04 -07:00
|
|
|
# (sorted alphabetically)
|
|
|
|
#
|
|
|
|
|
2010-06-03 12:03:26 -07:00
|
|
|
alias g='git'
|
2013-07-12 06:26:04 -07:00
|
|
|
|
|
|
|
alias ga='git add'
|
2015-06-12 02:50:30 -07:00
|
|
|
alias gaa='git add --all'
|
|
|
|
alias gapa='git add --patch'
|
2016-12-17 10:01:13 -07:00
|
|
|
alias gau='git add --update'
|
2018-08-13 12:11:25 -07:00
|
|
|
alias gav='git add --verbose'
|
2017-11-07 09:06:42 -07:00
|
|
|
alias gap='git apply'
|
2020-05-22 07:56:03 -07:00
|
|
|
alias gapt='git apply --3way'
|
2013-07-12 06:26:04 -07:00
|
|
|
|
|
|
|
alias gb='git branch'
|
|
|
|
alias gba='git branch -a'
|
2016-09-19 19:50:16 -07:00
|
|
|
alias gbd='git branch -d'
|
2020-07-03 10:03:04 -07:00
|
|
|
alias gbda='git branch --no-color --merged | command grep -vE "^(\+|\*|\s*($(git_main_branch)|development|develop|devel|dev)\s*$)" | command xargs -n 1 git branch -d'
|
2018-09-12 09:38:21 -07:00
|
|
|
alias gbD='git branch -D'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gbl='git blame -b -w'
|
|
|
|
alias gbnm='git branch --no-merged'
|
|
|
|
alias gbr='git branch --remote'
|
|
|
|
alias gbs='git bisect'
|
|
|
|
alias gbsb='git bisect bad'
|
|
|
|
alias gbsg='git bisect good'
|
|
|
|
alias gbsr='git bisect reset'
|
|
|
|
alias gbss='git bisect start'
|
|
|
|
|
2010-06-03 12:03:26 -07:00
|
|
|
alias gc='git commit -v'
|
2013-03-17 16:00:12 -07:00
|
|
|
alias gc!='git commit -v --amend'
|
2016-05-14 04:45:55 -07:00
|
|
|
alias gcn!='git commit -v --no-edit --amend'
|
2010-06-03 12:03:26 -07:00
|
|
|
alias gca='git commit -v -a'
|
2013-03-17 16:00:12 -07:00
|
|
|
alias gca!='git commit -v -a --amend'
|
2016-05-14 04:45:55 -07:00
|
|
|
alias gcan!='git commit -v -a --no-edit --amend'
|
|
|
|
alias gcans!='git commit -v -a -s --no-edit --amend'
|
2015-06-30 15:50:01 -07:00
|
|
|
alias gcam='git commit -a -m'
|
2016-10-02 16:11:26 -07:00
|
|
|
alias gcsm='git commit -s -m'
|
2021-05-03 08:35:13 -07:00
|
|
|
alias gcas='git commit -a -s'
|
|
|
|
alias gcasm='git commit -a -s -m'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gcb='git checkout -b'
|
|
|
|
alias gcf='git config --list'
|
2018-08-29 06:18:20 -07:00
|
|
|
alias gcl='git clone --recurse-submodules'
|
2019-03-31 06:56:35 -07:00
|
|
|
alias gclean='git clean -id'
|
2020-03-03 06:06:40 -07:00
|
|
|
alias gpristine='git reset --hard && git clean -dffx'
|
2020-07-03 10:03:04 -07:00
|
|
|
alias gcm='git checkout $(git_main_branch)'
|
2016-08-21 10:46:37 -07:00
|
|
|
alias gcd='git checkout develop'
|
2013-05-08 02:03:07 -07:00
|
|
|
alias gcmsg='git commit -m'
|
2010-12-20 08:13:47 -07:00
|
|
|
alias gco='git checkout'
|
2010-06-03 12:03:26 -07:00
|
|
|
alias gcount='git shortlog -sn'
|
|
|
|
alias gcp='git cherry-pick'
|
2016-08-14 17:58:11 -07:00
|
|
|
alias gcpa='git cherry-pick --abort'
|
|
|
|
alias gcpc='git cherry-pick --continue'
|
2014-08-09 08:26:35 -07:00
|
|
|
alias gcs='git commit -S'
|
|
|
|
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gd='git diff'
|
2015-06-12 02:50:30 -07:00
|
|
|
alias gdca='git diff --cached'
|
2017-11-01 05:55:19 -07:00
|
|
|
alias gdcw='git diff --cached --word-diff'
|
2019-05-21 01:57:37 -07:00
|
|
|
alias gdct='git describe --tags $(git rev-list --tags --max-count=1)'
|
2018-08-15 10:44:06 -07:00
|
|
|
alias gds='git diff --staged'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gdt='git diff-tree --no-commit-id --name-only -r'
|
2016-08-07 09:30:57 -07:00
|
|
|
alias gdw='git diff --word-diff'
|
|
|
|
|
2020-05-23 09:57:13 -07:00
|
|
|
function gdnolock() {
|
|
|
|
git diff "$@" ":(exclude)package-lock.json" ":(exclude)*.lock"
|
|
|
|
}
|
|
|
|
compdef _git gdnolock=git-diff
|
|
|
|
|
2019-05-21 01:57:37 -07:00
|
|
|
function gdv() { git diff -w "$@" | view - }
|
2013-07-12 06:26:04 -07:00
|
|
|
compdef _git gdv=git-diff
|
2013-05-22 02:00:08 -07:00
|
|
|
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gf='git fetch'
|
2020-10-03 11:29:26 -07:00
|
|
|
# --jobs=<n> was added in git 2.8
|
|
|
|
is-at-least 2.8 "$git_version" \
|
|
|
|
&& alias gfa='git fetch --all --prune --jobs=10' \
|
|
|
|
|| alias gfa='git fetch --all --prune'
|
2016-08-07 09:30:57 -07:00
|
|
|
alias gfo='git fetch origin'
|
|
|
|
|
2019-05-21 01:57:37 -07:00
|
|
|
alias gfg='git ls-files | grep'
|
2013-06-05 06:16:51 -07:00
|
|
|
|
|
|
|
alias gg='git gui citool'
|
|
|
|
alias gga='git gui citool --amend'
|
2016-08-07 09:30:57 -07:00
|
|
|
|
2019-05-21 01:57:37 -07:00
|
|
|
function ggf() {
|
2016-08-07 09:30:57 -07:00
|
|
|
[[ "$#" != 1 ]] && local b="$(git_current_branch)"
|
|
|
|
git push --force origin "${b:=$1}"
|
2013-07-12 06:26:04 -07:00
|
|
|
}
|
2019-05-21 01:57:37 -07:00
|
|
|
compdef _git ggf=git-checkout
|
|
|
|
function ggfl() {
|
2019-01-30 08:22:14 -07:00
|
|
|
[[ "$#" != 1 ]] && local b="$(git_current_branch)"
|
|
|
|
git push --force-with-lease origin "${b:=$1}"
|
2017-11-07 09:06:19 -07:00
|
|
|
}
|
2019-05-21 01:57:37 -07:00
|
|
|
compdef _git ggfl=git-checkout
|
2016-08-07 09:30:57 -07:00
|
|
|
|
2019-05-21 01:57:37 -07:00
|
|
|
function ggl() {
|
2016-08-07 09:30:57 -07:00
|
|
|
if [[ "$#" != 0 ]] && [[ "$#" != 1 ]]; then
|
|
|
|
git pull origin "${*}"
|
|
|
|
else
|
|
|
|
[[ "$#" == 0 ]] && local b="$(git_current_branch)"
|
|
|
|
git pull origin "${b:=$1}"
|
|
|
|
fi
|
2013-07-12 06:26:04 -07:00
|
|
|
}
|
|
|
|
compdef _git ggl=git-checkout
|
2016-08-07 09:30:57 -07:00
|
|
|
|
2019-05-21 01:57:37 -07:00
|
|
|
function ggp() {
|
2016-08-07 09:30:57 -07:00
|
|
|
if [[ "$#" != 0 ]] && [[ "$#" != 1 ]]; then
|
|
|
|
git push origin "${*}"
|
|
|
|
else
|
|
|
|
[[ "$#" == 0 ]] && local b="$(git_current_branch)"
|
|
|
|
git push origin "${b:=$1}"
|
|
|
|
fi
|
2013-07-12 06:26:04 -07:00
|
|
|
}
|
|
|
|
compdef _git ggp=git-checkout
|
2016-08-07 09:30:57 -07:00
|
|
|
|
2019-05-21 01:57:37 -07:00
|
|
|
function ggpnp() {
|
2016-08-07 09:30:57 -07:00
|
|
|
if [[ "$#" == 0 ]]; then
|
|
|
|
ggl && ggp
|
|
|
|
else
|
|
|
|
ggl "${*}" && ggp "${*}"
|
|
|
|
fi
|
2013-07-12 06:26:04 -07:00
|
|
|
}
|
|
|
|
compdef _git ggpnp=git-checkout
|
2016-08-07 09:30:57 -07:00
|
|
|
|
2019-05-21 01:57:37 -07:00
|
|
|
function ggu() {
|
2016-08-07 09:30:57 -07:00
|
|
|
[[ "$#" != 1 ]] && local b="$(git_current_branch)"
|
|
|
|
git pull --rebase origin "${b:=$1}"
|
2013-07-12 06:26:04 -07:00
|
|
|
}
|
|
|
|
compdef _git ggu=git-checkout
|
2016-08-07 09:30:57 -07:00
|
|
|
|
2015-06-11 02:04:54 -07:00
|
|
|
alias ggpur='ggu'
|
2019-01-20 12:19:07 -07:00
|
|
|
alias ggpull='git pull origin "$(git_current_branch)"'
|
|
|
|
alias ggpush='git push origin "$(git_current_branch)"'
|
2016-08-07 09:30:57 -07:00
|
|
|
|
|
|
|
alias ggsup='git branch --set-upstream-to=origin/$(git_current_branch)'
|
2016-08-10 17:47:54 -07:00
|
|
|
alias gpsup='git push --set-upstream origin $(git_current_branch)'
|
|
|
|
|
2016-08-20 14:53:12 -07:00
|
|
|
alias ghh='git help'
|
2016-05-30 18:57:36 -07:00
|
|
|
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gignore='git update-index --assume-unchanged'
|
|
|
|
alias gignored='git ls-files -v | grep "^[[:lower:]]"'
|
2020-07-03 10:03:04 -07:00
|
|
|
alias git-svn-dcommit-push='git svn dcommit && git push github $(git_main_branch):svntrunk'
|
2010-06-03 12:03:26 -07:00
|
|
|
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gk='\gitk --all --branches'
|
2016-09-05 01:54:15 -07:00
|
|
|
alias gke='\gitk --all $(git log -g --pretty=%h)'
|
2012-04-05 10:18:16 -07:00
|
|
|
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gl='git pull'
|
2015-12-25 01:33:29 -07:00
|
|
|
alias glg='git log --stat'
|
|
|
|
alias glgp='git log --stat -p'
|
|
|
|
alias glgg='git log --graph'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias glgga='git log --graph --decorate --all'
|
|
|
|
alias glgm='git log --graph --max-count=10'
|
2015-12-25 01:33:29 -07:00
|
|
|
alias glo='git log --oneline --decorate'
|
2018-09-12 10:35:10 -07:00
|
|
|
alias glol="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'"
|
|
|
|
alias glols="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --stat"
|
|
|
|
alias glod="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset'"
|
|
|
|
alias glods="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset' --date=short"
|
|
|
|
alias glola="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --all"
|
2015-12-25 01:33:29 -07:00
|
|
|
alias glog='git log --oneline --decorate --graph'
|
2016-05-18 02:27:23 -07:00
|
|
|
alias gloga='git log --oneline --decorate --graph --all'
|
2012-04-05 10:18:16 -07:00
|
|
|
alias glp="_git_log_prettily"
|
2013-09-18 12:54:23 -07:00
|
|
|
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gm='git merge'
|
2020-07-03 10:03:04 -07:00
|
|
|
alias gmom='git merge origin/$(git_main_branch)'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gmt='git mergetool --no-prompt'
|
|
|
|
alias gmtvim='git mergetool --no-prompt --tool=vimdiff'
|
2020-07-03 10:03:04 -07:00
|
|
|
alias gmum='git merge upstream/$(git_main_branch)'
|
2017-11-07 09:06:42 -07:00
|
|
|
alias gma='git merge --abort'
|
2013-07-12 06:26:04 -07:00
|
|
|
|
|
|
|
alias gp='git push'
|
|
|
|
alias gpd='git push --dry-run'
|
2018-09-12 10:05:57 -07:00
|
|
|
alias gpf='git push --force-with-lease'
|
|
|
|
alias gpf!='git push --force'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gpoat='git push origin --all && git push origin --tags'
|
|
|
|
alias gpu='git push upstream'
|
|
|
|
alias gpv='git push -v'
|
|
|
|
|
|
|
|
alias gr='git remote'
|
|
|
|
alias gra='git remote add'
|
|
|
|
alias grb='git rebase'
|
|
|
|
alias grba='git rebase --abort'
|
|
|
|
alias grbc='git rebase --continue'
|
2018-06-30 13:25:53 -07:00
|
|
|
alias grbd='git rebase develop'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias grbi='git rebase -i'
|
2020-07-03 10:03:04 -07:00
|
|
|
alias grbm='git rebase $(git_main_branch)'
|
2021-03-15 12:06:01 -07:00
|
|
|
alias grbo='git rebase --onto'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias grbs='git rebase --skip'
|
2019-06-15 10:47:23 -07:00
|
|
|
alias grev='git revert'
|
2018-06-12 09:23:31 -07:00
|
|
|
alias grh='git reset'
|
|
|
|
alias grhh='git reset --hard'
|
2019-03-10 09:38:06 -07:00
|
|
|
alias groh='git reset origin/$(git_current_branch) --hard'
|
2018-09-12 10:08:12 -07:00
|
|
|
alias grm='git rm'
|
|
|
|
alias grmc='git rm --cached'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias grmv='git remote rename'
|
|
|
|
alias grrm='git remote remove'
|
2019-08-20 03:11:38 -07:00
|
|
|
alias grs='git restore'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias grset='git remote set-url'
|
2019-08-20 03:11:38 -07:00
|
|
|
alias grss='git restore --source'
|
2020-05-15 02:01:18 -07:00
|
|
|
alias grst='git restore --staged'
|
2019-03-25 10:46:18 -07:00
|
|
|
alias grt='cd "$(git rev-parse --show-toplevel || echo .)"'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gru='git reset --'
|
|
|
|
alias grup='git remote update'
|
|
|
|
alias grv='git remote -v'
|
|
|
|
|
|
|
|
alias gsb='git status -sb'
|
|
|
|
alias gsd='git svn dcommit'
|
2018-08-23 13:04:42 -07:00
|
|
|
alias gsh='git show'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gsi='git submodule init'
|
|
|
|
alias gsps='git show --pretty=short --show-signature'
|
|
|
|
alias gsr='git svn rebase'
|
|
|
|
alias gss='git status -s'
|
|
|
|
alias gst='git status'
|
2019-04-09 09:29:18 -07:00
|
|
|
|
|
|
|
# use the default stash push on git 2.13 and newer
|
2020-10-03 11:29:26 -07:00
|
|
|
is-at-least 2.13 "$git_version" \
|
2019-04-09 09:35:09 -07:00
|
|
|
&& alias gsta='git stash push' \
|
2019-04-09 09:29:18 -07:00
|
|
|
|| alias gsta='git stash save'
|
|
|
|
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gstaa='git stash apply'
|
2016-08-18 00:22:21 -07:00
|
|
|
alias gstc='git stash clear'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gstd='git stash drop'
|
|
|
|
alias gstl='git stash list'
|
|
|
|
alias gstp='git stash pop'
|
|
|
|
alias gsts='git stash show --text'
|
2021-03-31 02:25:26 -07:00
|
|
|
alias gstu='gsta --include-untracked'
|
2018-09-12 07:28:59 -07:00
|
|
|
alias gstall='git stash --all'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gsu='git submodule update'
|
2019-08-20 03:11:38 -07:00
|
|
|
alias gsw='git switch'
|
|
|
|
alias gswc='git switch -c'
|
2013-07-12 06:26:04 -07:00
|
|
|
|
|
|
|
alias gts='git tag -s'
|
2015-10-09 14:47:48 -07:00
|
|
|
alias gtv='git tag | sort -V'
|
2019-09-13 02:20:20 -07:00
|
|
|
alias gtl='gtl(){ git tag --sort=-v:refname -n -l "${1}*" }; noglob gtl'
|
2013-10-29 20:05:35 -07:00
|
|
|
|
|
|
|
alias gunignore='git update-index --no-assume-unchanged'
|
2013-07-12 06:26:04 -07:00
|
|
|
alias gunwip='git log -n 1 | grep -q -c "\-\-wip\-\-" && git reset HEAD~1'
|
|
|
|
alias gup='git pull --rebase'
|
|
|
|
alias gupv='git pull --rebase -v'
|
2018-09-12 06:52:42 -07:00
|
|
|
alias gupa='git pull --rebase --autostash'
|
|
|
|
alias gupav='git pull --rebase --autostash -v'
|
2020-07-03 10:03:04 -07:00
|
|
|
alias glum='git pull upstream $(git_main_branch)'
|
2013-07-12 06:26:04 -07:00
|
|
|
|
|
|
|
alias gwch='git whatchanged -p --abbrev-commit --pretty=medium'
|
2019-03-29 14:59:37 -07:00
|
|
|
alias gwip='git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit --no-verify --no-gpg-sign -m "--wip-- [skip ci]"'
|
2020-02-18 13:05:52 -07:00
|
|
|
|
2020-05-22 07:56:03 -07:00
|
|
|
alias gam='git am'
|
|
|
|
alias gamc='git am --continue'
|
|
|
|
alias gams='git am --skip'
|
|
|
|
alias gama='git am --abort'
|
|
|
|
alias gamscp='git am --show-current-patch'
|
|
|
|
|
2020-02-18 13:05:52 -07:00
|
|
|
function grename() {
|
|
|
|
if [[ -z "$1" || -z "$2" ]]; then
|
|
|
|
echo "Usage: $0 old_branch new_branch"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Rename branch locally
|
|
|
|
git branch -m "$1" "$2"
|
|
|
|
# Rename branch in origin remote
|
|
|
|
if git push origin :"$1"; then
|
|
|
|
git push --set-upstream origin "$2"
|
|
|
|
fi
|
|
|
|
}
|
2020-10-03 11:29:26 -07:00
|
|
|
|
|
|
|
unset git_version
|