See existing remote branches:
$ git remote -vAdding from Git Repository (URL found on bottom right menu of GitHub), this one is "origin" for me, but you can name it other things if you have a specific name for a certain connection:
$ git remote add origin https://github.com/YOUR-USERNAME-HERE/NAME-OF-PROJECT.gitRemoving from local (replace "origin" with whichever branch you want to remove):
$ git remote rm origin
Version Control in a Team Setting:
Committing your work locally and in quotation marks, add a descriptive message of the changes made. Make sure it RUNS before doing this!
$ git commit -am "Adding something cool and describing it very well in this message.."Push your local changes up to Git for all to see. DOUBLE make sure it RUNS. Master here if you do not have other branches. If you do, then this will change depending on what and how much you wish to push. Origin here is the one I am working with, like I mentioned, this could change depending on what you are working with at the time.
$ git push origin masterPull down changes from others. Same deal with the master branch and origin as mentioned above.
$ git pull origin masterMore to be added soon.. !