Last active
December 5, 2024 04:13
-
-
Save FyeCobain/fbe67630516d99c959bb31d00063bd82 to your computer and use it in GitHub Desktop.
Aliases for CMD commands
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
;= HKEY_CURRENT_USER\SOFTWARE\Microsoft\Command Processor | |
;= HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor | |
;= AutoRun (REG_SZ) | |
;= DOSKEY /MACROFILE="C:\doskey\aliases.doskey" | |
pn = pnpm $* | |
dlx = pnpm dlx $* | |
npm-u = npm uninstall $* | |
dk = docker $* | |
dkc = docker compose $* | |
art = php artisan $* | |
e = exit | |
;= Git | |
g = git $* | |
crlf = git config core.autocrlf $* & echo Auto CRLF = $* | |
gcrlf = git config --global core.autocrlf $* & echo Global Auto CRLF = $* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment