Guest User

Untitled

a guest
Dec 16th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 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. cc=cls
  12. history=cat "%CMDER_ROOT%\config\.history"
  13. unalias=alias /d $1
  14. vi=vim $*
  15. cmderr=cd /d "%CMDER_ROOT%"
  16. ls=ls --color $*
  17. gs=git status
  18. gc=git commit -m "$*"
  19. ga=git add $*
  20. grh=git reset --hard
  21. gpl=git pull
  22. gp=git push
  23. gst=git stash
  24. gsp=git stash pop
  25. cdd=cd c:\users\cocare\desktop
  26. c=cd\
  27. cg=cd c:\gitsandbox
  28. vrc=vim ~/.vimrc
  29. aa=cd c:\cmder\config && vim user-aliases.cmd
  30. gprune=git branch -vv | grep ': gone]' | awk '{print $1}' >C:\Users\cocare\.del-branches && vim ~/.del-branches && xargs git branch -D <C:\Users\cocare\.del-branches && rm C:\Users\cocare\.del-branches
Add Comment
Please, Sign In to add comment