git up pull from remote to local branch code example
Example 1: see git origin
git remote -v
Example 2: git checkout branch from remote to local
git checkout -b test origin/test
// making a local copy of the branch called "test" from origin.
Example 3: see name of origin + git
git remote -v