Git: My aliases

Every time you start a new assignment on a new computer all your aliases are gone. I’ll put them here for easy access, and if someone likes them they can use them too 🙂

1git config --global alias.co checkout
2git config --global alias.ci commit
3git config --global alias.st status
4git config --global alias.last 'log -1 HEAD'

Tested with Git v 2.24.3 on OSX and Linux

Comments are closed.