You must log in or register to comment.
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.
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 really
In which case the -a isn’t needed.