202 lines
7.5 KiB
Plaintext
202 lines
7.5 KiB
Plaintext
|
# To the extent possible under law, the author(s) have dedicated all
|
||
|
# copyright and related and neighboring rights to this software to the
|
||
|
# public domain worldwide. This software is distributed without any warranty.
|
||
|
# You should have received a copy of the CC0 Public Domain Dedication along
|
||
|
# with this software.
|
||
|
# If not, see <https://creativecommons.org/publicdomain/zero/1.0/>.
|
||
|
|
||
|
# /etc/bash.bashrc: executed by bash(1) for interactive shells.
|
||
|
|
||
|
# System-wide bashrc file
|
||
|
|
||
|
# Check that we haven't already been sourced.
|
||
|
([[ -z ${CYG_SYS_BASHRC} ]] && CYG_SYS_BASHRC="1") || return
|
||
|
|
||
|
# If not running interactively, don't do anything
|
||
|
[[ "$-" != *i* ]] && return
|
||
|
|
||
|
# If started from sshd, make sure profile is sourced
|
||
|
if [[ -n "$SSH_CONNECTION" ]] && [[ "$PATH" != *:/usr/bin* ]]; then
|
||
|
source /etc/profile
|
||
|
fi
|
||
|
|
||
|
# Warnings
|
||
|
unset _warning_found
|
||
|
for _warning_prefix in '' ${MINGW_PREFIX}; do
|
||
|
for _warning_file in ${_warning_prefix}/etc/profile.d/*.warning{.once,}; do
|
||
|
test -f "${_warning_file}" || continue
|
||
|
_warning="$(command sed 's/^/\t\t/' "${_warning_file}" 2>/dev/null)"
|
||
|
if test -n "${_warning}"; then
|
||
|
if test -z "${_warning_found}"; then
|
||
|
_warning_found='true'
|
||
|
echo
|
||
|
fi
|
||
|
if test -t 1
|
||
|
then printf "\t\e[1;33mwarning:\e[0m\n${_warning}\n\n"
|
||
|
else printf "\twarning:\n${_warning}\n\n"
|
||
|
fi
|
||
|
fi
|
||
|
[[ "${_warning_file}" = *.once ]] && rm -f "${_warning_file}"
|
||
|
done
|
||
|
done
|
||
|
unset _warning_found
|
||
|
unset _warning_prefix
|
||
|
unset _warning_file
|
||
|
unset _warning
|
||
|
|
||
|
# If MSYS2_PS1 is set, use that as default PS1;
|
||
|
# if a PS1 is already set and exported, use that;
|
||
|
# otherwise set a default prompt
|
||
|
# of user@host, MSYSTEM variable, and current_directory
|
||
|
[[ -n "${MSYS2_PS1}" ]] && export PS1="${MSYS2_PS1}"
|
||
|
# if we have the "High Mandatory Level" group, it means we're elevated
|
||
|
#if [[ -n "$(command -v getent)" ]] && id -G | grep -q "$(getent -w group 'S-1-16-12288' | cut -d: -f2)"
|
||
|
# then _ps1_symbol='\[\e[1m\]#\[\e[0m\]'
|
||
|
# else _ps1_symbol='\$'
|
||
|
#fi
|
||
|
case "$(declare -p PS1 2>/dev/null)" in
|
||
|
'declare -x '*) ;; # okay
|
||
|
*)
|
||
|
export PS1='\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[35m\]$MSYSTEM\[\e[0m\] \[\e[33m\]\w\[\e[0m\]\n'"${_ps1_symbol}"' '
|
||
|
;;
|
||
|
esac
|
||
|
unset _ps1_symbol
|
||
|
|
||
|
# Uncomment to use the terminal colours set in DIR_COLORS
|
||
|
# eval "$(dircolors -b /etc/DIR_COLORS)"
|
||
|
|
||
|
# Fixup git-bash in non login env
|
||
|
shopt -q login_shell || . /etc/profile.d/git-prompt.sh
|
||
|
|
||
|
|
||
|
GIT_PS1_SHOWDIRTYSTATE=true
|
||
|
GIT_PS1_SHOWUNTRACKEDFILES=true
|
||
|
alias g=git
|
||
|
alias ga='git add'
|
||
|
alias gaa='git add --all'
|
||
|
alias gapa='git add --patch'
|
||
|
alias gb='git branch'
|
||
|
alias gba='git branch -a'
|
||
|
alias gbd='git branch -d'
|
||
|
alias gbda='git branch --no-color --merged | command grep -vE "^(\*|\s*(master|develop|dev)\s*$)" | command xargs -n 1 git branch -d'
|
||
|
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'
|
||
|
alias gc='git commit -v'
|
||
|
alias 'gc!'='git commit -v --amend'
|
||
|
alias gca='git commit -v -a'
|
||
|
alias 'gca!'='git commit -v -a --amend'
|
||
|
alias gcam='git commit -a -m'
|
||
|
alias 'gcan!'='git commit -v -a --no-edit --amend'
|
||
|
alias 'gcans!'='git commit -v -a -s --no-edit --amend'
|
||
|
alias gnb='git checkout -b'
|
||
|
alias gcd='git checkout develop'
|
||
|
alias gcf='git commit --amend --reuse-message HEAD'
|
||
|
alias gcl='git clone --recursive'
|
||
|
alias gclean='git clean -fd'
|
||
|
alias gcm='git checkout master'
|
||
|
alias gcmsg='git commit -m'
|
||
|
alias 'gcn!'='git commit -v --no-edit --amend'
|
||
|
alias gco='git checkout'
|
||
|
alias gcount='git shortlog -sn'
|
||
|
alias gcp='git cherry-pick'
|
||
|
alias gcpa='git cherry-pick --abort'
|
||
|
alias gcpc='git cherry-pick --continue'
|
||
|
alias gcs='git commit -S'
|
||
|
alias gd='git diff'
|
||
|
alias gdca='git diff --cached'
|
||
|
alias gdct='git describe --tags `git rev-list --tags --max-count=1`'
|
||
|
alias gdt='git diff-tree --no-commit-id --name-only -r'
|
||
|
alias gdw='git diff --word-diff'
|
||
|
alias gf='git fetch'
|
||
|
alias gfa='git fetch --all --prune'
|
||
|
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 ggpur=ggu
|
||
|
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 master:svntrunk'
|
||
|
alias gk='\gitk --all --branches'
|
||
|
alias gke='\gitk --all $(git log -g --pretty=%h)'
|
||
|
alias gl="git log --no-merges --color --graph --date=format:'%Y-%m-%d' --pretty=format:'%Cblue%cd %C(yellow)%h%Creset %C(green)%d%Cblue %s %C(magenta)[%an]%Creset' --abbrev-commit"
|
||
|
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 -p'
|
||
|
alias glo='git log --oneline --decorate'
|
||
|
alias globurl='noglob urlglobber '
|
||
|
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(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'\'' --abbrev-commit'
|
||
|
alias glola='git log --graph --pretty='\''%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'\'' --abbrev-commit --all'
|
||
|
alias glp=_git_log_prettily
|
||
|
alias glum='git pull upstream master'
|
||
|
alias gm='git merge'
|
||
|
alias gmom='git merge origin/master'
|
||
|
alias gmt='git mergetool --no-prompt'
|
||
|
alias gmtvim='git mergetool --no-prompt --tool=vimdiff'
|
||
|
alias gmum='git merge upstream/master'
|
||
|
alias gp='git push'
|
||
|
alias gpc='git push --set-upstream origin $(git_current_branch)'
|
||
|
alias gpd='git push --dry-run'
|
||
|
alias gpf='git push -f'
|
||
|
alias gpoat='git push origin --all && git push origin --tags'
|
||
|
alias gpristine='git reset --hard && git clean -dfx'
|
||
|
alias gpso='git push --set-upstream origin $(git_current_branch)'
|
||
|
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'
|
||
|
alias grbi='git rebase -i'
|
||
|
alias grbm='git rebase master'
|
||
|
alias grbs='git rebase --skip'
|
||
|
alias grep='grep --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn}'
|
||
|
alias grh='git reset HEAD'
|
||
|
alias grhh='git reset HEAD --hard'
|
||
|
alias grmv='git remote rename'
|
||
|
alias grrm='git remote remove'
|
||
|
alias grset='git remote set-url'
|
||
|
alias grt='cd $(git rev-parse --show-toplevel || echo ".")'
|
||
|
alias gru='git reset --'
|
||
|
alias grup='git remote update'
|
||
|
alias grv='git remote -v'
|
||
|
alias gsb='git status -sb'
|
||
|
alias gsd='git svn dcommit'
|
||
|
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'
|
||
|
alias gsta='git stash save'
|
||
|
alias gstaa='git stash apply'
|
||
|
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 --text'
|
||
|
alias gsu='git submodule update'
|
||
|
alias gts='git tag -s'
|
||
|
alias gtv='git tag | sort -V'
|
||
|
alias gunignore='git update-index --no-assume-unchanged'
|
||
|
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'
|
||
|
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 -m "--wip--"'
|
||
|
alias history='fc -l 1'
|
||
|
alias l='ls -lah'
|
||
|
alias vim='nvim -u ~/.SpaceVim/vimrc'
|