
Aug 4, 2009

If you do not want to see Git messages about build directories or miscellaneous scratch files then add them to your .gitignore file. To do so, create the file, add the directories/files and then add the file to git.
E.g.
touch .gitignore
Edit the file to suit your needs and then add/commit.
git add .gitignore
git commit .gitignore

Jul 14, 2009

I found this example of how to push a branch to Git in the GitHub documentation.
git push <remote_repository_name> <branch_name>
E.g.
git push origin master
Execute this from the base of your local repository. This pushes your local commits to the TOT.

Feb 12, 2009

Switching to Git has been an incremental learning experience. Below, are some useful links for learning about Git:
If you know of other useful introductory Git links, add them in the comments and we will update the post.