Last active
June 1, 2018 12:59
-
-
Save isevcik/f75ab3f754fa473977104edcc6c6c4a9 to your computer and use it in GitHub Desktop.
git for windows .bashrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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