Skip to content

Instantly share code, notes, and snippets.

@jdfreder
Last active January 5, 2016 00:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdfreder/6345614 to your computer and use it in GitHub Desktop.
Save jdfreder/6345614 to your computer and use it in GitHub Desktop.
*nix and win aliases
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