Created
November 30, 2021 01:31
-
-
Save cconard96/a7b2b7241d46d0c7db3e47ba819c92c1 to your computer and use it in GitHub Desktop.
My Git Aliases
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
# Redate - Change commit date for the last commit to now | |
alias.redate commit --amend --reset-author --no-edit | |
# Last - Show details of last commit | |
alias.last log -n 1 | |
# Current-Branch - Show the current branch namme | |
alias.current-branch rev-parse --abbrev-ref HEAD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment