Mac@programming.dev to Git@programming.dev · 2 years agoEvery git command I use (Cheatsheet)programming.devimagemessage-square12linkfedilinkarrow-up1108arrow-down15file-text
arrow-up1103arrow-down1imageEvery git command I use (Cheatsheet)programming.devMac@programming.dev to Git@programming.dev · 2 years agomessage-square12linkfedilinkfile-text
minus-squareGarytheSnail@programming.devlinkfedilinkarrow-up4·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-editoften.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