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
#git | |
alias gs="git status" | |
alias ga="git add" | |
alias gd="git diff" | |
alias nd="nbdiff --ignore-outputs --ignore-metadata --ignore-details" | |
alias gch="git checkout HEAD" | |
function gc(){ | |
git commit -m "$*" && git push origin HEAD | |
} |