@SeeMinusMinus to Programmer [email protected]English • 1 year agoIn case of fireimagemessage-square73arrow-up1955arrow-down126
arrow-up1929arrow-down1imageIn case of fire@SeeMinusMinus to Programmer [email protected]English • 1 year agomessage-square73
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.
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.