Created
June 29, 2010 14:31
-
-
Save rwetzeler/457276 to your computer and use it in GitHub Desktop.
bashrc file
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
# .bashrc file, located in c:\Users\username\ | |
#cmd | |
alias cd..="cd .." | |
alias ..="cd .." | |
alias ...="cd ../.." | |
alias ....="cd ../../.." | |
alias dir="ls -al" | |
alias cls="clear" | |
#git | |
alias gt="git" | |
alias gta="git add ." | |
alias gts="git status" | |
alias gtc="git commit" | |
alias gtco="git checkout" | |
alias gtcom="git checkout master" | |
alias gtb="git branch" | |
alias gtl="git log -3" | |
alias gtupdevrb="git pull --rebase devshared master" | |
alias gtpdev="git push devshared master" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment