git pull origin <branch>
git pull origin <branch-name>
git checkout -b <branch name>
git pull origin <branch name>
git pull origin <target-branch>
git checkout dmgr2 # gets you "on branch dmgr2"
git fetch origin # gets you up to date with origin
git merge origin/master
git pull origin <branch>
git checkout dmgr2 # gets you "on branch dmgr2"
git fetch origin # gets you up to date with origin
git merge origin/master
git checkout dmgr2 # gets you "on branch dmgr2"
git fetch origin # gets you up to date with origin
git merge origin/master
git pull . master(git pull . localBranchName)
git checkout dmgr2 # gets you "on branch dmgr2"
git fetch origin # gets you up to date with origin
git merge origin/master
git clone -b <branch> <remote_repo>