Add Alias for Git on cmder

To Add alias for Git on Cmder
Go to the following location or where ever you have unpacked the Cmder binaries
C:Program Filescmderconfig
and open the file aliases with administrator permissions.
There you will be able to add alias easily, for example to use with GIT you could add these common and most used commands alias:
gpusho=git push origin “$*”
gpullo=git pull origin “$*”
gs=git status
ga=git add .
gcm=git commit -m “$*”
grmfolder=git rm -r “$*”
grmfile=git rm “$*”
gr=git reset
Categories