通过 Visual Studio 在本地使用 BitBucket 存储库
我的公司刚刚开始使用 BitBucket 和 Mercurial 进行版本控制,我在本地将其与 Visual Studio 2010 集成起来很费劲。我可以轻松地在本地系统上创建一个文件夹,并使用 TortoiseHg 克隆 BitBucket 存储库,它会导致崩溃所有文件都正确。但是,当我尝试在同一文件夹中创建 Visual Studio 项目时,它坚持为项目文件创建自己的子文件夹,将我的版本控制源文件保留在项目之外。当我尝试以相反的方式执行此操作(首先在 Visual Studio 中创建解决方案)时,TortoiseHg 不会让我将存储库克隆到同一目录中,并表示它需要一个新文件夹。我所有的 google-foo 似乎都毫无结果。
有人有一种干净的方法来设置克隆存储库,以便使用 Mercurial 和 BitBucket 在 Visual Studio 中本地工作吗?
My company has just begun using BitBucket with Mercurial for version control and I am having a heck of a time integrating it locally with Visual Studio 2010. I can easily create a folder on my local system and clone the BitBucket repository using TortoiseHg and it brings down all the files appropriately. However, when I try to create a Visual Studio project in the same folder, it insists on creating it's own sub-folder for the project files, leaving my version controlled source files out of the project. When I try to do it the opposite way, creating my solution in Visual Studio first, TortoiseHg will not let me clone my repository into the same directory, saying that it needs a new folder. All of my google-foo seems to be coming up fruitless.
Anyone have a clean way of setting up a cloned repository from which to work locally in Visual Studio using Mercurial and BitBucket?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以
创建 Visual Studio 项目。
右键单击项目文件夹并选择TortoiseHg -> 在此处创建存储库。
在 TortoiseHg 中添加并提交文件。
将存储库推送到 Bitbucket 上的新空存储库中。要推送,您可以使用同步视图并向存储库添加新路径。将路径命名为
default
,它将成为默认的推送和拉取路径。重要的一点是您始终可以推送到空存储库中。这是将您在本地处理的存储库复制到 Bitbucket 的方法:在线创建一个新的空存储库并推送到它。
You can
Create your Visual Studio project.
Right-click the project folder and choose TortoiseHg -> Create Repostory Here.
Add and commit files in TortoiseHg.
Push the repository into a new empty repository on Bitbucket. To push, you use the synchronize view and add a new path to the repository. Name the path
default
and it will become the default push and pull path.The important point is that you can always push into an empty repository. This is how you copy a repository you've worked on locally to Bitbucket: create a new empty repository online and push to it.