Last active
November 23, 2016 12:35
-
-
Save rendfall/2f83deab57fe42265e44 to your computer and use it in GitHub Desktop.
Cmder - Aliases
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
| .. = cd .. | |
| pro = cd /projects | |
| ll=ls -Xal --color | |
| ip = ipconfig | grep "IPv4" | |
| build = npm run build | |
| bb = npm run build | |
| n = npm $* | |
| g = git $* | |
| gss = git status -sb | |
| gl = git pull $* | |
| glom = git pull origin master | |
| glod = git pull origin develop | |
| gp = git push | |
| gco = git checkout $* | |
| gb = git branch $* | |
| gba = git branch -a | |
| gbb = git branch -b | |
| ga = git add | |
| gaa = git add -A | |
| gcm = git checkout master | |
| gc = git commit $* | |
| gf = git fetch -p | |
| gd = git diff | |
| grhh = git reset --hard HEAD | |
| gbd = git branch -D $* | |
| gtr = git tag | xargs -n1 git tag -d && git fetch -t | |
| aliasreload = alias /reload |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment