Skip to content

Instantly share code, notes, and snippets.

@rendfall
Last active November 23, 2016 12:35
Show Gist options
  • Select an option

  • Save rendfall/2f83deab57fe42265e44 to your computer and use it in GitHub Desktop.

Select an option

Save rendfall/2f83deab57fe42265e44 to your computer and use it in GitHub Desktop.
Cmder - Aliases
.. = 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