Git 如何 clone 非 master 分支的代码
origin/HEAD -> origin/master
origin/daily/1.2.2
origin/daily/1.3.0
origin/daily/1.4.1
origin/develop
origin/feature/daily-1.0.0
origin/mastergit branch daily/1.4.1git checkout daily/1.4.1
# Switched to branch 'daily/1.4.1'git pull
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> daily/1.4.1Last updated