Skip to content

Instantly share code, notes, and snippets.

@jauderho
Last active August 17, 2021 06:43
Show Gist options
  • Save jauderho/c70b5af180ffff40b4d185ae051911e6 to your computer and use it in GitHub Desktop.
Save jauderho/c70b5af180ffff40b4d185ae051911e6 to your computer and use it in GitHub Desktop.
HISTIGNORE="cd *:rm *:curl *:grep *:wget *:ssh *:scp *:sftp *:&"
# Colors
export CLICOLOR=1
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx
alias j='jobs'
alias k='kill'
alias more="less"
alias mroe="less"
# LS
alias ls="ls -F"
# Git Aliases
alias ga='git add'
alias gp='git push'
alias gl='git log'
alias gs='git status'
alias gd='git diff'
alias gm='git commit -m'
alias gma='git commit -am'
alias gb='git branch'
alias gc='git checkout'
alias gra='git remote add'
alias grr='git remote rm'
alias gpu='git pull'
alias gcl='git clone'
alias dsp='docker system prune --volumes -f'
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment