930
In case of fire
(lemmy.world)
Post funny things about programming here! (Or just rant about your favourite programming language.)
no changes added to commit (use "git add" and/or "git commit -a")
It should (at least) be:
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.