-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Closed
Description
You have a step "Make Changes." (here), where you say this:
git add
git commit -a
Why:
git commit -a will start an editor which lets you separate the subject from the body. Read more about it in section 1.3.
However, this will not work. When someone runs git add, it will output the following:
➔ git add
Nothing specified, nothing added.
Maybe you wanted to say 'git add .'?
Also, git commit -a does NOT mean "start an editor". It means the following (straight from man git-commit):
-a, --all
Tell the command to automatically stage files that have been
modified and deleted, but new files you have not told Git about
are not affected.
If you want, I can make some changes to this and shoot you a PR. 😄
Villanuevand and mateogianolio