使用 tortoisegit 切换分支
我在硬盘上克隆了一个 git 存储库。这个 git 存储库不仅包含 master,还包含一个名为 newBranch 的分支。如何使用 tortoisegit 签出新分支?
我用 switch/checkout 命令尝试过,但本地文件没有任何变化。有效的是当我将两个分支克隆到不同的文件夹中时,但我想让它与 tortoisegit 一起使用。
git clone localhost:testProject
与
git clone localhost:testProject newBranch不同
I cloned a git respository on my hard disc. This git repository contains not only the master but also a branch called newBranch. How can I checkout the new branch with tortoisegit?
I tried it with the switch/checkout command but nothing changed in my local files. What works is when I clone the two branches in different folders like but I want to get it working with tortoisegit.
git clone localhost:testProject
differs from
git clone localhost:testProject newBranch
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 TortoiseGit 中切换分支时,您有一个复选框选项
Force
。除此之外,我必须承认我很难过。
You have a checkbox option
Force
when switching branches in TortoiseGit.Other than that, I must admit I'm stumped to.
这对我有用:
This is what worked for me:
从上下文菜单转到设置。
常规 -> 上下文菜单 -> 选择“切换/结帐”。
之后它将在上下文菜单中可见。
Go to settings from the context menu.
General->Context Menu->Select 'Switch/Checkout'.
Afterwards it will be visible in the context menu.