SeeMinusMinus@lemmy.world to Programmer Humor@lemmy.mlEnglish · 11 months agoIn case of firelemmy.worldimagemessage-square102fedilinkarrow-up1907arrow-down127
arrow-up1880arrow-down1imageIn case of firelemmy.worldSeeMinusMinus@lemmy.world to Programmer Humor@lemmy.mlEnglish · 11 months agomessage-square102fedilink
minus-squarerufus@discuss.tchncs.delinkfedilinkarrow-up3·edit-211 months agoIt should (at least) be: git commit -a -m "🚨🔥🚨" git push --force Better, create a new branch and push it to origin(?). Relevant The IT Crowd
minus-squareIAm_A_Complete_Idiot@sh.itjust.workslinkfedilinkarrow-up4·edit-211 months agoBetter have not created any new files tho - git commit -a doesn’t catch those without an add first.
minus-squareZephyrXero@lemmy.worldlinkfedilinkEnglisharrow-up1·edit-211 months agoSo we need git add . && git commit -a here really
minus-squareIAm_A_Complete_Idiot@sh.itjust.workslinkfedilinkarrow-up2·11 months agoIn which case the -a isn’t needed.
It should (at least) be:
git commit -a -m "🚨🔥🚨" git push --force
Better, create a new branch and push it to origin(?).
Relevant The IT Crowd
Better have not created any new files tho - git commit -a doesn’t catch those without an add first.
So we need
git add .
&&git commit -a
here reallyIn which case the -a isn’t needed.