Created
December 1, 2010 04:16
-
-
Save cfurrow/722936 to your computer and use it in GitHub Desktop.
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
doskey /macrofile=%userprofile%\doskeys.txt |
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
clear=cls | |
gs=git status | |
ga=git add $* | |
gc=git commit $* | |
gca=git commit -a $* | |
gb=git branch $* | |
gd=git diff | |
grm=git status | grep deleted | awk '{print\$3}' | xargs git rm | |
pull=git pull origin master | |
gpom=git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment