mac@programming.dev to Git@programming.dev • edit-21 year agoEvery git command I use (Cheatsheet)imagemessage-square9 fedilinkarrow-up157file-text
arrow-up157imageEvery git command I use (Cheatsheet)mac@programming.dev to Git@programming.dev • edit-21 year agomessage-square9 Commentsfedilinkfile-text
minus-squareGarytheSnail@programming.devhexbear4·1 year 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 linkfedilink
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.
git add -u git commit --amend --no-edit git push -f