无法在Mercurial中创建克隆

时间:2016-08-03 09:23:05

标签: mercurial tortoisehg

我刚安装了mercurial和togoise hg,我是新手。 我在cmd写这个纪念品来创建一个克隆:myfile.txt hg clone。但后来我无法看到任何克隆创建。我的文件被打开。有人能帮我吗?我在哪里可以找到这个创建的克隆?谢谢!

1 个答案:

答案 0 :(得分:0)

与Nanhydrin一样:hg clone是克隆存储库。

什么是存储库?它是您运行hg init的项目文件夹。水银。通过获取项目文件夹并运行hg init来获取存储库。然后,您可以在该文件夹或子文件夹中添加任何文件,并使用hg add将它们添加到版本控制中。

将项目目录转换为存储库:

cd my-project
hg init  # start a repository in the current directory
# tell Mercurial to start tracking these files
hg add file1 file2 file3 ...  
# commit the files you just added. This is the first commit!
hg commit  

克隆存储库:

hg clone C:/my-mercurial-repos/my-project
[creates a clone of the my-project repository in my-repo]

cd my-project  # Enter the repository

您无法克隆文件,但您可以创建Mercurial也会跟踪的副本。

hg copy my-file.txt my-file-copy.txt
hg commit

其余的,请参考Nanhydrin的优秀建议并阅读http://hginit.com/index.html。当我开始使用Mercurial时,它帮助我很多