Simple commands needed for working with multiple remotes in git.
List of remotes
git remote -v
Add a remote
git remote add remoteName http://url
Rename a remote
git remote rename oldname newname
Checkout a remote branch
git checkout -b branchname remotename/branchname
Delete a remote