Created
September 6, 2016 21:00
-
-
Save u1and0/b558ff4439009b0e811e4eebdec65500 to your computer and use it in GitHub Desktop.
Cmder alias ref: http://qiita.com/u1and0/items/e98a2535cabfd0e0339e
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
e.=explorer . | |
ls=ls --show-control-chars -F --color $* | |
pwd=cd | |
clear=cls | |
history=cat %CMDER_ROOT%\config\.history | |
grep=grep --color $* | |
find=find . -name $* | |
unalias=alias /d $* | |
su="sublime_text.exe" $* | |
py="python" $* | |
ipy=ipython | |
spy=spyder | |
jpy=cmd /k "jupyter qtconsole --style=monokai" -new_console:t:"Jupyter" -new_console:b | |
g= git $* | |
gf=git flow $* | |
::add,commit,push= | |
ga= git add | |
gaa= git add . | |
gan= git add -n . | |
gaundo= git reset HEAD | |
gac=git commit -am $* | |
gc= git commit -m $* | |
gcundo=git commit --amend | |
gp=git push $* | |
gpo=git push origin $* | |
::status= | |
gs= git status --short $* | |
gsb=git status --short --branch $* | |
gl=git log --oneline --all --graph --decorate $* | |
gls=git ls-files $* | |
gd= git diff --color-words $* | |
::branch= | |
gch=git checkout $* | |
gb=git branch $* | |
gm=git merge $* | |
gt=git tag $* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment