Last active
January 5, 2016 00:46
-
-
Save jdfreder/6345614 to your computer and use it in GitHub Desktop.
*nix and win aliases
This file contains 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 push="git push" | |
alias pull="git pull" | |
alias reb="git rebase" | |
alias com="git commit" | |
alias co="git checkout" | |
alias merge="git mergetool" | |
alias st="git status" | |
alias br="git branch" | |
alias add="git add" | |
alias grm="git rm" | |
alias gmv="git mv" | |
alias up="git remote update" | |
alias remote="git remote" | |
alias cd..="cd .." | |
alias dir="ls" | |
alias ipconfig="ifconfig" | |
alias nb="python -m notebook --NotebookApp.ignore_minified_js=True" | |
alias nbc="python -m nbconvert" | |
alias lf="ls -l | egrep -v '^d'" | |
alias ldir="ls -l | egrep '^d'" | |
alias unstage="git reset HEAD" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment