2020-10-03 20:29:26 +02:00
|
|
|
# Git version checking
|
|
|
|
autoload -Uz is-at-least
|
2020-10-04 13:09:32 +02:00
|
|
|
git_version="${${(As: :)$(git version 2>/dev/null)}[3]}"
|
2020-10-03 20:29:26 +02:00
|
|
|
|
2013-07-12 15:26:04 +02:00
|
|
|
#
|
|
|
|
# Functions
|
|
|
|
#
|
|
|
|
|
2015-06-25 21:04:01 +02: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 15:26:04 +02:00
|
|
|
function current_branch() {
|
2015-06-25 21:04:01 +02:00
|
|
|
git_current_branch
|
2013-07-12 15:26:04 +02:00
|
|
|
}
|
2019-05-21 10:57:37 +02:00
|
|
|
|
2013-07-12 15:26:04 +02:00
|
|
|
# Pretty log messages
|
|
|
|
function _git_log_prettily(){
|
|
|
|
if ! [ -z $1 ]; then
|
|
|
|
git log --pretty=$1
|
|
|
|
fi
|
|
|
|
}
|
2019-05-21 10:57:37 +02:00
|
|
|
compdef _git _git_log_prettily=git-log
|
|
|
|
|
2013-07-12 15:26:04 +02:00
|
|
|
# Warn if the current branch is a WIP
|
|
|
|
function work_in_progress() {
|
2022-01-10 19:39:05 +01:00
|
|
|
command git -c log.showSignature=false log -n 1 2>/dev/null | grep -q -- "--wip--" && echo "WIP!!"
|
2013-07-12 15:26:04 +02:00
|
|
|
}
|
|
|
|
|
2020-07-15 17:02:49 +02:00
|
|
|
# Check if main exists and use instead of master
|
2020-07-03 19:03:04 +02:00
|
|
|
function git_main_branch() {
|
2020-12-08 18:25:42 +01:00
|
|
|
command git rev-parse --git-dir &>/dev/null || return
|
2021-09-03 11:43:53 +02:00
|
|
|
local ref
|
2023-01-06 00:03:12 +01:00
|
|
|
for ref in refs/{heads,remotes/{origin,upstream}}/{main,trunk,mainline,default}; do
|
2021-09-03 11:43:53 +02:00
|
|
|
if command git show-ref -q --verify $ref; then
|
|
|
|
echo ${ref:t}
|
2020-11-12 16:17:28 +01:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo master
|
2020-07-03 19:03:04 +02:00
|
|
|
}
|
|
|
|
|
2021-08-10 16:31:49 +02:00
|
|
|
# Check for develop and similarly named branches
|
|
|
|
function git_develop_branch() {
|
|
|
|
command git rev-parse --git-dir &>/dev/null || return
|
|
|
|
local branch
|
|
|
|
for branch in dev devel development; do
|
|
|
|
if command git show-ref -q --verify refs/heads/$branch; then
|
|
|
|
echo $branch
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo develop
|
|
|
|
}
|
|
|
|
|
2013-07-12 15:26:04 +02:00
|
|
|
#
|
2010-06-03 21:03:26 +02:00
|
|
|
# Aliases
|
2013-07-12 15:26:04 +02:00
|
|
|
# (sorted alphabetically)
|
|
|
|
#
|
|
|
|
|
2010-06-03 21:03:26 +02:00
|
|
|
alias g='git'
|
2013-07-12 15:26:04 +02:00
|
|
|
|
|
|
|
alias ga='git add'
|
2015-06-12 11:50:30 +02:00
|
|
|
alias gaa='git add --all'
|
|
|
|
alias gapa='git add --patch'
|
2016-12-17 18:01:13 +01:00
|
|
|
alias gau='git add --update'
|
2018-08-13 21:11:25 +02:00
|
|
|
alias gav='git add --verbose'
|
2017-11-07 17:06:42 +01:00
|
|
|
alias gap='git apply'
|
2020-05-22 16:56:03 +02:00
|
|
|
alias gapt='git apply --3way'
|
2013-07-12 15:26:04 +02:00
|
|
|
|
|
|
|
alias gb='git branch'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gba='git branch --all'
|
|
|
|
alias gbd='git branch --delete'
|
|
|
|
alias gbda='git branch --no-color --merged | command grep -vE "^([+*]|\s*($(git_main_branch)|$(git_develop_branch))\s*$)" | command xargs git branch --delete 2>/dev/null'
|
|
|
|
alias gbD='git branch --delete --force'
|
2013-07-12 15:26:04 +02: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'
|
|
|
|
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gc='git commit --verbose'
|
|
|
|
alias gc!='git commit --verbose --amend'
|
|
|
|
alias gcn!='git commit --verbose --no-edit --amend'
|
|
|
|
alias gca='git commit --verbose --all'
|
|
|
|
alias gca!='git commit --verbose --all --amend'
|
|
|
|
alias gcan!='git commit --verbose --all --no-edit --amend'
|
|
|
|
alias gcans!='git commit --verbose --all --signoff --no-edit --amend'
|
|
|
|
alias gcam='git commit --all --message'
|
|
|
|
alias gcsm='git commit --signoff --message'
|
|
|
|
alias gcas='git commit --all --signoff'
|
|
|
|
alias gcasm='git commit --all --signoff --message'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gcb='git checkout -b'
|
|
|
|
alias gcf='git config --list'
|
2019-10-06 04:19:14 +02:00
|
|
|
|
|
|
|
function gccd() {
|
|
|
|
command git clone --recurse-submodules "$@"
|
2021-10-09 13:42:17 +02:00
|
|
|
[[ -d "$_" ]] && cd "$_" || cd "${${_:t}%.git}"
|
2019-10-06 04:19:14 +02:00
|
|
|
}
|
|
|
|
compdef _git gccd=git-clone
|
|
|
|
|
2018-08-29 15:18:20 +02:00
|
|
|
alias gcl='git clone --recurse-submodules'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gclean='git clean --interactive -d'
|
|
|
|
alias gpristine='git reset --hard && git clean --force -dx'
|
2020-07-03 19:03:04 +02:00
|
|
|
alias gcm='git checkout $(git_main_branch)'
|
2021-08-10 16:31:49 +02:00
|
|
|
alias gcd='git checkout $(git_develop_branch)'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gcmsg='git commit --message'
|
2010-12-20 16:13:47 +01:00
|
|
|
alias gco='git checkout'
|
2021-06-13 19:25:27 +02:00
|
|
|
alias gcor='git checkout --recurse-submodules'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gcount='git shortlog --summary --numbered'
|
2010-06-03 21:03:26 +02:00
|
|
|
alias gcp='git cherry-pick'
|
2016-08-15 02:58:11 +02:00
|
|
|
alias gcpa='git cherry-pick --abort'
|
|
|
|
alias gcpc='git cherry-pick --continue'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gcs='git commit --gpg-sign'
|
|
|
|
alias gcss='git commit --gpg-sign --signoff'
|
|
|
|
alias gcssm='git commit --gpg-sign --signoff --message'
|
2014-08-09 17:26:35 +02:00
|
|
|
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gd='git diff'
|
2015-06-12 11:50:30 +02:00
|
|
|
alias gdca='git diff --cached'
|
2017-11-01 13:55:19 +01:00
|
|
|
alias gdcw='git diff --cached --word-diff'
|
2019-05-21 10:57:37 +02:00
|
|
|
alias gdct='git describe --tags $(git rev-list --tags --max-count=1)'
|
2018-08-15 19:44:06 +02:00
|
|
|
alias gds='git diff --staged'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gdt='git diff-tree --no-commit-id --name-only -r'
|
2021-10-06 10:13:38 +02:00
|
|
|
alias gdup='git diff @{upstream}'
|
2016-08-07 18:30:57 +02:00
|
|
|
alias gdw='git diff --word-diff'
|
|
|
|
|
2020-05-23 18:57:13 +02:00
|
|
|
function gdnolock() {
|
|
|
|
git diff "$@" ":(exclude)package-lock.json" ":(exclude)*.lock"
|
|
|
|
}
|
|
|
|
compdef _git gdnolock=git-diff
|
|
|
|
|
2019-05-21 10:57:37 +02:00
|
|
|
function gdv() { git diff -w "$@" | view - }
|
2013-07-12 15:26:04 +02:00
|
|
|
compdef _git gdv=git-diff
|
2013-05-22 11:00:08 +02:00
|
|
|
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gf='git fetch'
|
2020-10-03 20:29:26 +02: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 18:30:57 +02:00
|
|
|
alias gfo='git fetch origin'
|
|
|
|
|
2019-05-21 10:57:37 +02:00
|
|
|
alias gfg='git ls-files | grep'
|
2013-06-05 15:16:51 +02:00
|
|
|
|
|
|
|
alias gg='git gui citool'
|
|
|
|
alias gga='git gui citool --amend'
|
2016-08-07 18:30:57 +02:00
|
|
|
|
2019-05-21 10:57:37 +02:00
|
|
|
function ggf() {
|
2016-08-07 18:30:57 +02:00
|
|
|
[[ "$#" != 1 ]] && local b="$(git_current_branch)"
|
|
|
|
git push --force origin "${b:=$1}"
|
2013-07-12 15:26:04 +02:00
|
|
|
}
|
2019-05-21 10:57:37 +02:00
|
|
|
compdef _git ggf=git-checkout
|
|
|
|
function ggfl() {
|
2019-01-30 16:22:14 +01:00
|
|
|
[[ "$#" != 1 ]] && local b="$(git_current_branch)"
|
|
|
|
git push --force-with-lease origin "${b:=$1}"
|
2017-11-07 17:06:19 +01:00
|
|
|
}
|
2019-05-21 10:57:37 +02:00
|
|
|
compdef _git ggfl=git-checkout
|
2016-08-07 18:30:57 +02:00
|
|
|
|
2019-05-21 10:57:37 +02:00
|
|
|
function ggl() {
|
2016-08-07 18:30:57 +02:00
|
|
|
if [[ "$#" != 0 ]] && [[ "$#" != 1 ]]; then
|
|
|
|
git pull origin "${*}"
|
|
|
|
else
|
|
|
|
[[ "$#" == 0 ]] && local b="$(git_current_branch)"
|
|
|
|
git pull origin "${b:=$1}"
|
|
|
|
fi
|
2013-07-12 15:26:04 +02:00
|
|
|
}
|
|
|
|
compdef _git ggl=git-checkout
|
2016-08-07 18:30:57 +02:00
|
|
|
|
2019-05-21 10:57:37 +02:00
|
|
|
function ggp() {
|
2016-08-07 18:30:57 +02:00
|
|
|
if [[ "$#" != 0 ]] && [[ "$#" != 1 ]]; then
|
|
|
|
git push origin "${*}"
|
|
|
|
else
|
|
|
|
[[ "$#" == 0 ]] && local b="$(git_current_branch)"
|
|
|
|
git push origin "${b:=$1}"
|
|
|
|
fi
|
2013-07-12 15:26:04 +02:00
|
|
|
}
|
|
|
|
compdef _git ggp=git-checkout
|
2016-08-07 18:30:57 +02:00
|
|
|
|
2019-05-21 10:57:37 +02:00
|
|
|
function ggpnp() {
|
2016-08-07 18:30:57 +02:00
|
|
|
if [[ "$#" == 0 ]]; then
|
|
|
|
ggl && ggp
|
|
|
|
else
|
|
|
|
ggl "${*}" && ggp "${*}"
|
|
|
|
fi
|
2013-07-12 15:26:04 +02:00
|
|
|
}
|
|
|
|
compdef _git ggpnp=git-checkout
|
2016-08-07 18:30:57 +02:00
|
|
|
|
2019-05-21 10:57:37 +02:00
|
|
|
function ggu() {
|
2016-08-07 18:30:57 +02:00
|
|
|
[[ "$#" != 1 ]] && local b="$(git_current_branch)"
|
|
|
|
git pull --rebase origin "${b:=$1}"
|
2013-07-12 15:26:04 +02:00
|
|
|
}
|
|
|
|
compdef _git ggu=git-checkout
|
2016-08-07 18:30:57 +02:00
|
|
|
|
2015-06-11 11:04:54 +02:00
|
|
|
alias ggpur='ggu'
|
2019-01-20 20:19:07 +01:00
|
|
|
alias ggpull='git pull origin "$(git_current_branch)"'
|
|
|
|
alias ggpush='git push origin "$(git_current_branch)"'
|
2016-08-07 18:30:57 +02:00
|
|
|
|
|
|
|
alias ggsup='git branch --set-upstream-to=origin/$(git_current_branch)'
|
2016-08-11 02:47:54 +02:00
|
|
|
alias gpsup='git push --set-upstream origin $(git_current_branch)'
|
2023-01-28 18:45:23 +01:00
|
|
|
alias gpsupf='git push --set-upstream origin $(git_current_branch) --force-with-lease'
|
2016-08-11 02:47:54 +02:00
|
|
|
|
2016-08-20 23:53:12 +02:00
|
|
|
alias ghh='git help'
|
2016-05-31 03:57:36 +02:00
|
|
|
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gignore='git update-index --assume-unchanged'
|
|
|
|
alias gignored='git ls-files -v | grep "^[[:lower:]]"'
|
2020-07-03 19:03:04 +02:00
|
|
|
alias git-svn-dcommit-push='git svn dcommit && git push github $(git_main_branch):svntrunk'
|
2010-06-03 21:03:26 +02:00
|
|
|
|
2021-10-04 10:43:13 +02:00
|
|
|
alias gk='\gitk --all --branches &!'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gke='\gitk --all $(git log --walk-reflogs --pretty=%h) &!'
|
2012-04-05 19:18:16 +02:00
|
|
|
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gl='git pull'
|
2015-12-25 09:33:29 +01:00
|
|
|
alias glg='git log --stat'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias glgp='git log --stat --patch'
|
2015-12-25 09:33:29 +01:00
|
|
|
alias glgg='git log --graph'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias glgga='git log --graph --decorate --all'
|
|
|
|
alias glgm='git log --graph --max-count=10'
|
2015-12-25 09:33:29 +01:00
|
|
|
alias glo='git log --oneline --decorate'
|
2021-09-06 11:21:44 +02:00
|
|
|
alias glol="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset'"
|
|
|
|
alias glols="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset' --stat"
|
2018-09-12 19:35:10 +02:00
|
|
|
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"
|
2021-09-06 11:21:44 +02:00
|
|
|
alias glola="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset' --all"
|
2015-12-25 09:33:29 +01:00
|
|
|
alias glog='git log --oneline --decorate --graph'
|
2016-05-18 11:27:23 +02:00
|
|
|
alias gloga='git log --oneline --decorate --graph --all'
|
2012-04-05 19:18:16 +02:00
|
|
|
alias glp="_git_log_prettily"
|
2013-09-18 21:54:23 +02:00
|
|
|
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gm='git merge'
|
2020-07-03 19:03:04 +02:00
|
|
|
alias gmom='git merge origin/$(git_main_branch)'
|
2021-09-06 13:25:35 +02:00
|
|
|
alias gmtl='git mergetool --no-prompt'
|
|
|
|
alias gmtlvim='git mergetool --no-prompt --tool=vimdiff'
|
2020-07-03 19:03:04 +02:00
|
|
|
alias gmum='git merge upstream/$(git_main_branch)'
|
2017-11-07 17:06:42 +01:00
|
|
|
alias gma='git merge --abort'
|
2013-07-12 15:26:04 +02:00
|
|
|
|
|
|
|
alias gp='git push'
|
|
|
|
alias gpd='git push --dry-run'
|
2018-09-12 19:05:57 +02:00
|
|
|
alias gpf='git push --force-with-lease'
|
|
|
|
alias gpf!='git push --force'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gpoat='git push origin --all && git push origin --tags'
|
2021-06-12 15:06:09 +02:00
|
|
|
alias gpr='git pull --rebase'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gpu='git push upstream'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gpv='git push --verbose'
|
2013-07-12 15:26:04 +02:00
|
|
|
|
|
|
|
alias gr='git remote'
|
|
|
|
alias gra='git remote add'
|
|
|
|
alias grb='git rebase'
|
|
|
|
alias grba='git rebase --abort'
|
|
|
|
alias grbc='git rebase --continue'
|
2021-08-10 16:31:49 +02:00
|
|
|
alias grbd='git rebase $(git_develop_branch)'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias grbi='git rebase --interactive'
|
2020-07-03 19:03:04 +02:00
|
|
|
alias grbm='git rebase $(git_main_branch)'
|
2021-11-27 20:30:03 +01:00
|
|
|
alias grbom='git rebase origin/$(git_main_branch)'
|
2021-03-15 20:06:01 +01:00
|
|
|
alias grbo='git rebase --onto'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias grbs='git rebase --skip'
|
2019-06-15 19:47:23 +02:00
|
|
|
alias grev='git revert'
|
2018-06-12 18:23:31 +02:00
|
|
|
alias grh='git reset'
|
|
|
|
alias grhh='git reset --hard'
|
2019-03-10 17:38:06 +01:00
|
|
|
alias groh='git reset origin/$(git_current_branch) --hard'
|
2018-09-12 19:08:12 +02:00
|
|
|
alias grm='git rm'
|
|
|
|
alias grmc='git rm --cached'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias grmv='git remote rename'
|
|
|
|
alias grrm='git remote remove'
|
2019-08-20 12:11:38 +02:00
|
|
|
alias grs='git restore'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias grset='git remote set-url'
|
2019-08-20 12:11:38 +02:00
|
|
|
alias grss='git restore --source'
|
2020-05-15 11:01:18 +02:00
|
|
|
alias grst='git restore --staged'
|
2019-03-25 18:46:18 +01:00
|
|
|
alias grt='cd "$(git rev-parse --show-toplevel || echo .)"'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gru='git reset --'
|
|
|
|
alias grup='git remote update'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias grv='git remote --verbose'
|
2013-07-12 15:26:04 +02:00
|
|
|
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gsb='git status --short --branch'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gsd='git svn dcommit'
|
2018-08-23 22:04:42 +02:00
|
|
|
alias gsh='git show'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gsi='git submodule init'
|
|
|
|
alias gsps='git show --pretty=short --show-signature'
|
|
|
|
alias gsr='git svn rebase'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gss='git status --short'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gst='git status'
|
2019-04-09 18:29:18 +02:00
|
|
|
|
|
|
|
# use the default stash push on git 2.13 and newer
|
2020-10-03 20:29:26 +02:00
|
|
|
is-at-least 2.13 "$git_version" \
|
2019-04-09 18:35:09 +02:00
|
|
|
&& alias gsta='git stash push' \
|
2019-04-09 18:29:18 +02:00
|
|
|
|| alias gsta='git stash save'
|
|
|
|
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gstaa='git stash apply'
|
2016-08-18 09:22:21 +02:00
|
|
|
alias gstc='git stash clear'
|
2013-07-12 15:26:04 +02: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 11:25:26 +02:00
|
|
|
alias gstu='gsta --include-untracked'
|
2018-09-12 16:28:59 +02:00
|
|
|
alias gstall='git stash --all'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gsu='git submodule update'
|
2019-08-20 12:11:38 +02:00
|
|
|
alias gsw='git switch'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gswc='git switch --create'
|
2021-10-08 17:24:00 +02:00
|
|
|
alias gswm='git switch $(git_main_branch)'
|
|
|
|
alias gswd='git switch $(git_develop_branch)'
|
2013-07-12 15:26:04 +02:00
|
|
|
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gts='git tag --sign'
|
2015-10-09 23:47:48 +02:00
|
|
|
alias gtv='git tag | sort -V'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gtl='gtl(){ git tag --sort=-v:refname -n --list "${1}*" }; noglob gtl'
|
2013-10-30 04:05:35 +01:00
|
|
|
|
|
|
|
alias gunignore='git update-index --no-assume-unchanged'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gunwip='git log --max-count=1 | grep -q -c "\--wip--" && git reset HEAD~1'
|
2013-07-12 15:26:04 +02:00
|
|
|
alias gup='git pull --rebase'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gupv='git pull --rebase --verbose'
|
2018-09-12 15:52:42 +02:00
|
|
|
alias gupa='git pull --rebase --autostash'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gupav='git pull --rebase --autostash --verbose'
|
2022-05-25 16:32:33 +02:00
|
|
|
alias gupom='git pull --rebase origin $(git_main_branch)'
|
|
|
|
alias gupomi='git pull --rebase=interactive origin $(git_main_branch)'
|
2020-07-03 19:03:04 +02:00
|
|
|
alias glum='git pull upstream $(git_main_branch)'
|
2022-08-10 16:17:47 +02:00
|
|
|
alias gluc='git pull upstream $(git_current_branch)'
|
2013-07-12 15:26:04 +02:00
|
|
|
|
|
|
|
alias gwch='git whatchanged -p --abbrev-commit --pretty=medium'
|
2023-01-12 13:41:47 +01:00
|
|
|
alias gwip='git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit --no-verify --no-gpg-sign --message "--wip-- [skip ci]"'
|
2020-02-18 21:05:52 +01:00
|
|
|
|
2022-11-07 09:47:59 +01:00
|
|
|
alias gwt='git worktree'
|
|
|
|
alias gwta='git worktree add'
|
|
|
|
alias gwtls='git worktree list'
|
|
|
|
alias gwtmv='git worktree move'
|
|
|
|
alias gwtrm='git worktree remove'
|
|
|
|
|
2020-05-22 16:56:03 +02: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 21:05:52 +01: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 20:29:26 +02:00
|
|
|
|
2023-01-28 18:45:23 +01:00
|
|
|
unset git_version
|