Skip to content

Instantly share code, notes, and snippets.

@isevcik
Last active June 1, 2018 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isevcik/f75ab3f754fa473977104edcc6c6c4a9 to your computer and use it in GitHub Desktop.
Save isevcik/f75ab3f754fa473977104edcc6c6c4a9 to your computer and use it in GitHub Desktop.
git for windows .bashrc
alias cdd="cd ~/Documents/swdev"
alias cds="cd src/Web/Website/"
# GIT
alias gdp="git checkout develop && git pull"
alias gmp="git checkout master && git pull"
alias gs="git status"
alias gd="git diff -w"
alias gdc="git diff -w --cached"
alias ga="git add . && git status"
# go to swdev
cdd
# env
# prevent commands starting with space to be saved in history
export HISTCONTROL=ignoreboth
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment