by Jerry Lau.
git commit -a
Is this right?
or
I have to add all the modified files before I commit anything.
git add -A or git add --all
After that, I can use commit all the added files
git commit
with this, I have to add the message for this commit.
git coa "my changes are upgrade to build 20130802 blah, blah....."
Am I in the right track?