LoginSignup
3
5

More than 5 years have passed since last update.

Cmder alias

Posted at

正式かわからないけど::=で挟むとコメントアウト。

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 $*
3
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
5