Adding a late one to the list git config --global alias.mend "commit --amend". Calling it mend seems more natural to me and since I alias git to g in my shell, I'm gonna be all about the g mend.
git config --global alias.mend "commit --amend"
git
g
g mend
We’re a place where coders share, stay up-to-date and grow their careers.
We strive for transparency and don't collect excess data.
re: My Git Aliases VIEW POST
VIEW FULL DISCUSSIONAdding a late one to the list
git config --global alias.mend "commit --amend"
. Calling it mend seems more natural to me and since I aliasgit
tog
in my shell, I'm gonna be all about theg mend
.