@SeeMinusMinus@lemmy.world to Programmer Humor@lemmy.mlEnglish • 1 year agoIn case of firelemmy.worldimagemessage-square74fedilinkarrow-up1953arrow-down127
arrow-up1926arrow-down1imageIn case of firelemmy.world@SeeMinusMinus@lemmy.world to Programmer Humor@lemmy.mlEnglish • 1 year agomessage-square74fedilink
minus-square@nao@sh.itjust.workslinkfedilink9•1 year agono changes added to commit (use “git add” and/or “git commit -a”)
minus-square@rufus@discuss.tchncs.delinkfedilink3•edit-21 year 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-square@IAm_A_Complete_Idiot@sh.itjust.workslinkfedilink4•edit-21 year agoBetter have not created any new files tho - git commit -a doesn’t catch those without an add first.
minus-squareZephyrXerolinkfedilinkEnglish1•edit-21 year agoSo we need git add . && git commit -a here really
minus-square@IAm_A_Complete_Idiot@sh.itjust.workslinkfedilink2•1 year agoIn which case the -a isn’t needed.
no changes added to commit (use “git add” and/or “git commit -a”)
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.