@[email protected] to Programmer [email protected]English • 1 year agoIn case of firelemmy.worldimagemessage-square74fedilinkarrow-up1956arrow-down127
arrow-up1929arrow-down1imageIn case of firelemmy.world@[email protected] to Programmer [email protected]English • 1 year agomessage-square74fedilink
minus-square@[email protected]linkfedilink3•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@[email protected]linkfedilink4•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
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.