在 intellij idea 中同一项目的两个分支上工作
我想在我的创意项目中从事两个独立的分支。
一个简单的解决方案是:
在我的项目文件夹中克隆 git 目录(第二次)并签出 git 所需的分支。 这在 idea 中不起作用,git 副本不会被识别为 git 文件夹。
存储库不在项目根目录中,当前结构:
ProjectFolder/
ProjectFolder/gitRepository
ProjectFolder/gitRepositoryClone
I would like to work on two separate branches in my idea project.
An easy solution would be:
Clone the git directory (a second time) in my project folder and checkout the git required branch.
This is not working in idea, the git copy does is not recognized as git folder.
The repository is not in project root, current structure:
ProjectFolder/
ProjectFolder/gitRepository
ProjectFolder/gitRepositoryClone
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,不要忘记
git worktree
(此处介绍)不是第二个克隆,而是工作树的副本,位于不同的分支上,用于相同的初始存储库。其次,来自此线程< /a>,一种方法是:
因此请在项目文件夹旁边而不是内部创建它,然后导入它。
和:
First, don't forget
git worktree
(presented here) is not a second clone, but a copy of the working tree, on a different branch, for the same initial repository.Second, from this thread, one way is:
So do create it next to, not inside, your project folder, then import it.
And: