Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
shibafu528 committed Oct 20, 2018
1 parent 93c284b commit 9a4e1df
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .cmdrc.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@echo off

REM aliases / common command
doskey cd=cd /d $*
doskey ls=dir $*
doskey cp=copy $*
doskey mv=move $*
doskey rm=del /p $*

REM aliases / git command
doskey ga=git add $*
doskey gb=git branch $*
doskey gc=git commit $*
doskey gch=git checkout $*
doskey gd=git diff $*
doskey gl=git log --decorate=full --all $*
doskey gs=git status $*
5 changes: 5 additions & 0 deletions .regcmdrc.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo off

REM Register .cmdrc.bat

reg add "HKEY_CURRENT_USER\Software\Microsoft\Command Processor" /v AutoRun /d %~dp0.cmdrc.bat

0 comments on commit 9a4e1df

Please sign in to comment.