Created
February 14, 2025 15:22
-
-
Save heathhenley/2f952bfde66036dda1884d331f05ce10 to your computer and use it in GitHub Desktop.
Some aliases I like
This file contains hidden or 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
@echo off | |
doskey gsu=git status -uno | |
doskey gs=git status | |
doskey gpr=git pull -r | |
doskey gf=git fetch | |
doskey gc=git commit $* | |
doskey ga=git add $* | |
doskey gch=git checkout $* | |
doskey gka=gitk --all | |
doskey gla=git log --graph --pretty=format:"%%Cred%%h%%Creset -%%C(yellow)%%d%%Creset %%s %%Cgreen(%%cr) %%C(bold blue)<%%an>%%Creset" --all | |
set PATH=%PATH%;c:\dev\ag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment