使用 hg clone 拉取存储库,但使用 hg log 时看不到修订
我从以下位置下载代码存储库:
hg clone https://[email protected]/sergiotapia/sharpdic
现在我的计算机上有这些文件夹;我可以打开解决方案并在其上进行开发。现在,当我运行 hg log 时,我看不到我所做的初始推送。我不应该能够看到日志上的初始推送吗?
我虽然克隆了一个存储库,但得到了完整的变更集?
感谢您的帮助。
I download my code repository from:
hg clone https://[email protected]/sergiotapia/sharpdic
And now I have the folders on my machine; I can open the solution and develop on it. Now when I run hg log I don't see the initial push I made. Shouldn't I be able to see the initial push on the log?
I though cloning a repo got the complete changesets?
Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您已经创建了一个存储库(
hg init
),然后将一个外部存储库克隆到其中。您只需跳过第一步,然后在克隆后跳过
cd Sharpdic
,即可在正确的存储库中执行命令。It seems you have created a repository (
hg init
) and then cloned an external repository into it.You simply need to skip the first step and then
cd sharpdic
after cloning for your commands to be executed in/on the right repository.