We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
http://stackoverflow.com/questions/2648375/git-merging-changes-to-local-branch
https://github.com/webmat/git_remote_branch
Branch and Merge
git checkout -t origin/{branch} << checkout existing branch with tracking
git checkout -b {newBranch} origin/{newBranch} << creates new branch from origin
git checkout -b {newBranch} {fromOldBranch} << creates new branch from old branch