Remote repos

git remote -v
#shows all connected remote repos

Command Description
git clone repo_url Clones an existing repo
git remote Shows the list of remote servers
git remote -v Shows the list of remote servers with URLs
git remote show server_alias Shows detailed information about a server
git remote add server_alias repo_url Adds a new alias for a server with the given repo_url
git remote remove server_alias Disconnects from a server
git push server_alias branch_name Pushes branch_name to server_alias
git fetch server_alias branch_name Downloads changes without merging them with the local branch
git pull server_alias branch_name Downloads and merges changes