I read the documentation and googled a good bit, but there is no real simple steps to be able to commit your local changes to github. I compiled the following steps and I ju
I think that that's enough for very basic usage. I'd just like to add two comments:
git add): either use git diff, or do a git add --patch, which will start an interactive procedure to let you decide whether to accept or reject each hunk
of code you modified. If you messed anything up during this phase,
you can always git reset HEAD to get the changes back to the
working copy (i.e., you would simply undo the add) git commit -a -m 'your
message'.