标签:origin str pre check rem stream 分支 方法 远程分支
方法一:(已经创建了本地分支)
git branch --set-upstream-to=origin/remote_branch your_branch
等同于
git branch -u origin/remote_branch your_branch
方法二:(本地分支不存在)
git checkout -b your_branch origin/remote_branch
标签:origin str pre check rem stream 分支 方法 远程分支
原文地址:https://www.cnblogs.com/lyraLee/p/10906058.html