Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. ;= @echo off
  2. ;= rem Call DOSKEY and use this file as the macrofile
  3. ;= %SystemRoot%\system32\doskey /listsize=1000 /macrofile=%0%
  4. ;= rem In batch mode, jump to the end of the file
  5. ;= goto:eof
  6. ;= Add aliases below here
  7. e.=explorer .
  8. gl=git log --oneline --all --graph --decorate $*
  9. ls=ls --show-control-chars -F --color $*
  10. pwd=cd
  11. clear=cls
  12. history=cat -n "%CMDER_ROOT%\config\.history"
  13. unalias=alias /d $1
  14. vi=vim $*
  15. cmderr=cd /d "%CMDER_ROOT%"
  16.  
  17. cr=composer
  18. cri=composer install
  19. crd=composer dump-autoload $*
  20. cru=composer update"
  21.  
  22. pa=php artisan $*
  23. pamm=php artisan make:model $*
  24. pamc=php artisan make:controller $*
  25. pakg=php artisan key:generate $*
  26. pamt=php artisan make:test $*
  27. pamf=php artisan migrate:fresh $*
  28. pami=php artisan migrate $*
  29. pads=php artisan db:seed $*
  30. pas=php artisan serve $*
  31. tinker=php artisan tinker
  32.  
  33. ndev=npm run dev
  34. nprod=npm run prod
  35. nhot=npm run hot
  36.  
  37. g=git
  38. gp=git push -u origin $*
  39. gc=git clone $*
  40. gst=git status
  41. gch=git checkout $*
  42. gb=git branch $*
  43. gbc=git checkout -b $*
  44. gad=git add .
  45. gcm=git commit -m $*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement