如何克隆特定的Git分支? [英] How to clone a specific Git branch?

查看:90
本文介绍了如何克隆特定的Git分支?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Git克隆会将远程当前工作分支复制到本地。



有没有办法通过我自己克隆一个特定的分支,而无需在远程仓库上切换分支?

解决方案

  git init 
git remote add -t refspec remotename host:/dir.git
git fetch

但是,如果我记得正确,默认情况下,克隆将从远程工作分支中获取所有分支。

Git clone will behave copying remote current working branch into local.

Is there any way to clone a specific branch by myself without switching branches on remote repository?

解决方案

git init
git remote add -t refspec remotename host:/dir.git
git fetch

But If I Remember Correctly, by default, clone fetches all branches from remote, not current working branch.

这篇关于如何克隆特定的Git分支?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆