Last active
June 15, 2020 17:28
-
-
Save JamWils/f116b64a365a4ec8091448f033a90f85 to your computer and use it in GitHub Desktop.
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