1234567891011121314151617181920212223242526272829303132333435363738394041 |
- ;= @echo off
- ;= rem Call DOSKEY and use this file as the macrofile
- ;= %SystemRoot%\system32\doskey /listsize=1000 /macrofile=%0%
- ;= rem In batch mode, jump to the end of the file
- ;= goto:eof
- ;= Add aliases below here
- e.=explorer .
- gl=git log --oneline --all --graph --decorate $*
- gs=git status
- gc=git commit
- gcm=git commit -m $*
- gd=git diff
- gaa=git add .
- gb=git branch
- checkout=git checkout $*
- gba=git branch $*
- tinker=php artisan tinker
- ms=php artisan migrate:status
- migrate=php artisan migrate
- ~ = cd /d %Userprofile%
- cdw=cd /d C:\Bitnami\wampstack-5.6.30-1\apache2\htdocs
- cmderr=cd /d "%CMDER_ROOT%"
- config.=cd /d "%CMDER_ROOT%\config"
- pwd=cd
- clear=cls
- history=cat "%CMDER_ROOT%\config\.history"
- unalias=alias /d $1
- vi=vim $*
- l=ls --show-control-chars
- la=ls -aF --show-control-chars --color
- ll=ls -lF --show-control-chars --color
- ls=ls --show-control-chars -F --color
- nn="C:\Program Files (x86)\Notepad++\notepad++.exe" $*
- na="C:\Program Files (x86)\Notepad++\notepad++.exe" "%CMDER_ROOT%\config\user-aliases.cmd"
|