我如何获取远程分支?
我意外删除了我的git文件夹。 我在远程分支存储库工作。 我怎样才能将我的远程分支拉到我的本地?
如果你还有git repo:
做就是了
git fetch origin
其次是。
git checkout -b <branch> origin/branch
如果你完全删除了git仓库然后重新登录仓库:
git clone <repository-address>
然后,按照上述步骤获取其他分支,如果它们没有自动拉入。
我意外删除了我的git文件夹。 我在远程分支存储库工作。 我怎样才能将我的远程分支拉到我的本地?
该怎么办?
检出所需的分支
# Clone the repo
git clone <url>
# Checkout the desired branch
git checkout <branch name>
如果您仍然拥有.git
文件夹并且您没有移除它 - 请阅读如何让您的代码回到此处:
如何将HEAD移回到以前的位置? (分离头)
上一篇: How do I fetch a remote branch?
下一篇: How can i clone more than one git repository. If its possible?