Git aliases I use on a day-to-day basis
This file contains 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
git config --global alias.s "status -s" | |
git config --global alias.bc="branch --sort=-committerdate" | |
git config --global alias.lg "log --oneline --decorate --graph" | |
git config --global alias.lgb "log --graph --oneline --decorate --first-parent" | |
// Calling log for branch | |
git lgb <branch_name> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment