238 lines
8.5 KiB
Bash
238 lines
8.5 KiB
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
# editor
|
||
|
alias e="${EDITOR}"
|
||
|
alias r="${EDITOR} -R"
|
||
|
alias sm="sublime_merge"
|
||
|
alias vi="${EDITOR}"
|
||
|
|
||
|
# system
|
||
|
alias mem='free -mt'
|
||
|
alias df='df -hT'
|
||
|
|
||
|
# navigation
|
||
|
alias ls='eza'
|
||
|
alias ll='eza -lah --group --smart-group --icons'
|
||
|
alias l='eza -F'
|
||
|
|
||
|
# web
|
||
|
alias https='http --verify=no --default-scheme=https'
|
||
|
|
||
|
# search
|
||
|
alias rgrep='rg --no-ignore'
|
||
|
|
||
|
# add colors to some commands
|
||
|
alias diff='colordiff'
|
||
|
export GREP_COLORS='ms=01;33:mc=01;33:s1=:cx=:fn=37;ln=32:bn=32:se=36'
|
||
|
alias grep='grep --color'
|
||
|
alias ip='ip -c'
|
||
|
|
||
|
# dotfiles
|
||
|
alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
||
|
|
||
|
# be careful!
|
||
|
alias rm='rm -i'
|
||
|
alias cp='cp -i'
|
||
|
alias mv='mv -i'
|
||
|
|
||
|
# pytest
|
||
|
alias pyt='poetry run pytest -vvs --no-cov --disable-warnings'
|
||
|
alias pytc='poetry run pytest -vvs --disable-warnings --cov-report=xml:cov.xml'
|
||
|
|
||
|
# k8s
|
||
|
alias k='kubectl'
|
||
|
|
||
|
# miscellaneous
|
||
|
alias devu="${HOME}/devu/devu/devu"
|
||
|
|
||
|
# git
|
||
|
alias ga='git add'
|
||
|
alias gaa='git add --all'
|
||
|
alias gam='git am'
|
||
|
alias gama='git am --abort'
|
||
|
alias gamc='git am --continue'
|
||
|
alias gams='git am --skip'
|
||
|
alias gamscp='git am --show-current-patch'
|
||
|
alias gap='git apply'
|
||
|
alias gapa='git add --patch'
|
||
|
alias gapt='git apply --3way'
|
||
|
alias gau='git add --update'
|
||
|
alias gav='git add --verbose'
|
||
|
alias gb='git branch'
|
||
|
alias gbD='git branch --delete --force'
|
||
|
alias gba='git branch --all'
|
||
|
alias gbd='git branch --delete'
|
||
|
alias gbl='git blame -w'
|
||
|
alias gbm='git branch --move'
|
||
|
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 gbsn='git bisect new'
|
||
|
alias gbso='git bisect old'
|
||
|
alias gbsr='git bisect reset'
|
||
|
alias gbss='git bisect start'
|
||
|
alias gc='git commit --verbose'
|
||
|
alias 'gc!'='git commit --verbose --amend'
|
||
|
alias gcB='git checkout -B'
|
||
|
alias gca='git commit --verbose --all'
|
||
|
alias 'gca!'='git commit --verbose --all --amend'
|
||
|
alias gcam='git commit --all --message'
|
||
|
alias 'gcan!'='git commit --verbose --all --no-edit --amend'
|
||
|
alias 'gcann!'='git commit --verbose --all --date=now --no-edit --amend'
|
||
|
alias 'gcans!'='git commit --verbose --all --signoff --no-edit --amend'
|
||
|
alias gcas='git commit --all --signoff'
|
||
|
alias gcasm='git commit --all --signoff --message'
|
||
|
alias gcb='git checkout -b'
|
||
|
alias gcd='git checkout $(git_develop_branch)'
|
||
|
alias gcf='git config --list'
|
||
|
alias gcl='git clone --recurse-submodules'
|
||
|
alias gclean='git clean --interactive -d'
|
||
|
alias gclf='git clone --recursive --shallow-submodules --filter=blob:none --also-filter-submodules'
|
||
|
alias gcm='git checkout $(git_main_branch)'
|
||
|
alias gcmsg='git commit --message'
|
||
|
alias gcn='git commit --verbose --no-edit'
|
||
|
alias 'gcn!'='git commit --verbose --no-edit --amend'
|
||
|
alias gco='git checkout'
|
||
|
alias gcor='git checkout --recurse-submodules'
|
||
|
alias gcount='git shortlog --summary --numbered'
|
||
|
alias gcp='git cherry-pick'
|
||
|
alias gcpa='git cherry-pick --abort'
|
||
|
alias gcpc='git cherry-pick --continue'
|
||
|
alias gcs='git commit --gpg-sign'
|
||
|
alias gcsm='git commit --signoff --message'
|
||
|
alias gcss='git commit --gpg-sign --signoff'
|
||
|
alias gcssm='git commit --gpg-sign --signoff --message'
|
||
|
alias gd='git diff'
|
||
|
alias gdca='git diff --cached'
|
||
|
alias gdct='git describe --tags $(git rev-list --tags --max-count=1)'
|
||
|
alias gdcw='git diff --cached --word-diff'
|
||
|
alias gds='git diff --staged'
|
||
|
alias gdt='git diff-tree --no-commit-id --name-only -r'
|
||
|
alias gdup='git diff @{upstream}'
|
||
|
alias gdw='git diff --word-diff'
|
||
|
alias gf='git fetch'
|
||
|
alias gfa='git fetch --all --tags --prune --jobs=10'
|
||
|
alias gfg='git ls-files | grep'
|
||
|
alias gfo='git fetch origin'
|
||
|
alias gg='git gui citool'
|
||
|
alias gga='git gui citool --amend'
|
||
|
alias ggpull='git pull origin "$(git_current_branch)"'
|
||
|
alias ggpush='git push origin "$(git_current_branch)"'
|
||
|
alias ggsup='git branch --set-upstream-to=origin/$(git_current_branch)'
|
||
|
alias ghh='git help'
|
||
|
alias gignore='git update-index --assume-unchanged'
|
||
|
alias gignored='git ls-files -v | grep "^[[:lower:]]"'
|
||
|
alias git-svn-dcommit-push='git svn dcommit && git push github $(git_main_branch):svntrunk'
|
||
|
alias gl='git pull'
|
||
|
alias glg='git log --stat'
|
||
|
alias glgg='git log --graph'
|
||
|
alias glgga='git log --graph --decorate --all'
|
||
|
alias glgm='git log --graph --max-count=10'
|
||
|
alias glgp='git log --stat --patch'
|
||
|
alias glo='git log --oneline --decorate'
|
||
|
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 glog='git log --oneline --decorate --graph'
|
||
|
alias gloga='git log --oneline --decorate --graph --all'
|
||
|
alias glol='git log --graph --pretty="%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset"'
|
||
|
alias glola='git log --graph --pretty="%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset" --all'
|
||
|
alias glols='git log --graph --pretty="%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset" --stat'
|
||
|
alias gluc='git pull upstream $(git_current_branch)'
|
||
|
alias glum='git pull upstream $(git_main_branch)'
|
||
|
alias gm='git merge'
|
||
|
alias gma='git merge --abort'
|
||
|
alias gmc='git merge --continue'
|
||
|
alias gmff='git merge --ff-only'
|
||
|
alias gmom='git merge origin/$(git_main_branch)'
|
||
|
alias gms='git merge --squash'
|
||
|
alias gmtl='git mergetool --no-prompt'
|
||
|
alias gmtlvim='git mergetool --no-prompt --tool=vimdiff'
|
||
|
alias gmum='git merge upstream/$(git_main_branch)'
|
||
|
alias gp='git push'
|
||
|
alias gpd='git push --dry-run'
|
||
|
alias gpf='git push --force-with-lease --force-if-includes'
|
||
|
alias 'gpf!'='git push --force'
|
||
|
alias gpoat='git push origin --all && git push origin --tags'
|
||
|
alias gpod='git push origin --delete'
|
||
|
alias gpr='git pull --rebase'
|
||
|
alias gpra='git pull --rebase --autostash'
|
||
|
alias gprav='git pull --rebase --autostash -v'
|
||
|
alias gpristine='git reset --hard && git clean --force -dfx'
|
||
|
alias gprom='git pull --rebase origin $(git_main_branch)'
|
||
|
alias gpromi='git pull --rebase=interactive origin $(git_main_branch)'
|
||
|
alias gprum='git pull --rebase upstream $(git_main_branch)'
|
||
|
alias gprumi='git pull --rebase=interactive upstream $(git_main_branch)'
|
||
|
alias gprv='git pull --rebase -v'
|
||
|
alias gpsup='git push --set-upstream origin $(git_current_branch)'
|
||
|
alias gpsupf='git push --set-upstream origin $(git_current_branch) --force-with-lease --force-if-includes'
|
||
|
alias gpu='git push upstream'
|
||
|
alias gpv='git push --verbose'
|
||
|
alias gr='git remote'
|
||
|
alias gra='git remote add'
|
||
|
alias grb='git rebase'
|
||
|
alias grba='git rebase --abort'
|
||
|
alias grbc='git rebase --continue'
|
||
|
alias grbd='git rebase $(git_develop_branch)'
|
||
|
alias grbi='git rebase --interactive'
|
||
|
alias grbm='git rebase $(git_main_branch)'
|
||
|
alias grbo='git rebase --onto'
|
||
|
alias grbom='git rebase origin/$(git_main_branch)'
|
||
|
alias grbs='git rebase --skip'
|
||
|
alias grbum='git rebase upstream/$(git_main_branch)'
|
||
|
alias grev='git revert'
|
||
|
alias greva='git revert --abort'
|
||
|
alias grevc='git revert --continue'
|
||
|
alias grf='git reflog'
|
||
|
alias grh='git reset'
|
||
|
alias grhh='git reset --hard'
|
||
|
alias grhk='git reset --keep'
|
||
|
alias grhs='git reset --soft'
|
||
|
alias grm='git rm'
|
||
|
alias grmc='git rm --cached'
|
||
|
alias grmv='git remote rename'
|
||
|
alias groh='git reset origin/$(git_current_branch) --hard'
|
||
|
alias grrm='git remote remove'
|
||
|
alias grs='git restore'
|
||
|
alias grset='git remote set-url'
|
||
|
alias grss='git restore --source'
|
||
|
alias grst='git restore --staged'
|
||
|
alias gru='git reset --'
|
||
|
alias grup='git remote update'
|
||
|
alias grv='git remote --verbose'
|
||
|
alias gsb='git status --short --branch'
|
||
|
alias gsd='git svn dcommit'
|
||
|
alias gsh='git show'
|
||
|
alias gsi='git submodule init'
|
||
|
alias gsps='git show --pretty=short --show-signature'
|
||
|
alias gsr='git svn rebase'
|
||
|
alias gss='git status --short'
|
||
|
alias gst='git status'
|
||
|
alias gsta='git stash push'
|
||
|
alias gstaa='git stash apply'
|
||
|
alias gstall='git stash --all'
|
||
|
alias gstc='git stash clear'
|
||
|
alias gstd='git stash drop'
|
||
|
alias gstl='git stash list'
|
||
|
alias gstp='git stash pop'
|
||
|
alias gsts='git stash show --patch'
|
||
|
alias gsu='git submodule update'
|
||
|
alias gsw='git switch'
|
||
|
alias gswc='git switch --create'
|
||
|
alias gswd='git switch $(git_develop_branch)'
|
||
|
alias gswm='git switch $(git_main_branch)'
|
||
|
alias gta='git tag --annotate'
|
||
|
alias gts='git tag --sign'
|
||
|
alias gtv='git tag | sort -V'
|
||
|
alias gunignore='git update-index --no-assume-unchanged'
|
||
|
alias gunwip='git rev-list --max-count=1 --format="%s" HEAD | grep -q "\--wip--" && git reset HEAD~1'
|
||
|
alias gwch='git whatchanged -p --abbrev-commit --pretty=medium'
|
||
|
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]"'
|
||
|
alias gwipe='git reset --hard && git clean --force -df'
|
||
|
alias gwt='git worktree'
|
||
|
alias gwta='git worktree add'
|
||
|
alias gwtls='git worktree list'
|
||
|
alias gwtmv='git worktree move'
|
||
|
alias gwtrm='git worktree remove'
|