Mac to [email protected] • edit-22 years agoEvery git command I use (Cheatsheet)programming.devimagemessage-square12fedilinkarrow-up1106
arrow-up1106imageEvery git command I use (Cheatsheet)programming.devMac to [email protected] • edit-22 years agomessage-square12fedilink
minus-square@[email protected]linkfedilink4•2 years agoI use git commit --amend --no-edit often. Like if I forget to run a formatter before I commit and the build complains just for that. git add -u git commit --amend --no-edit git push -f
I use
git commit --amend --no-edit
often.Like if I forget to run a formatter before I commit and the build complains just for that.