Created
November 11, 2021 21:36
-
-
Save krnlde/68d827ef8ca3a17c3232f53d2ce45660 to your computer and use it in GitHub Desktop.
/bat/macros.doskey
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
ls=dir /B $1 | |
ip=ipconfig $* | |
y=yarn $* | |
yes=yarn start $* | |
yo=yarn outdated $* | |
yup=yarn upgrade-interactive --latest $* | |
yb=yarn build $* | |
gs=git fetch && git status $* | |
gps=git push $* | |
gpr=git pull --rebase --autostash $* | |
gcam=git commit -am $* | |
gl=git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
reg add "HKCU\Software\Microsoft\Command Processor" /v Autorun /d "doskey /macrofile=\"c:\bat\macros.doskey\"" /f