解压 Mercurial 存储库文件
我创建了一个存储库并将其与远程存储库同步。
这些文件经过压缩,每个文件都有一个 (i) 扩展名。
我想将文件解压缩到一个新文件夹(不是存储库),并使用它们的原始名称,就像我在 Google 代码上浏览网页时看到的那样。
I created a repository and synchronized it with a remote repository.
The files are compressed and each has an (i) extension.
I want to extract the files to a new folder (not repository) with decompressing them and with their original name as I see them on the web browsing on Google code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,您会执行
hg clone操作
来执行此操作,这会自动更新工作目录。由于您执行了
hg init
操作,然后从远程存储库进行了hg pull
操作,因此您需要执行hg update
操作,它将用以下内容填充工作目录实际文件。.hg
目录下的所有这些.i
文件都是存储库的存储和索引等。很少有人手动搞乱这些。大多数时候,人们在.hg
目录下唯一接触的是hgrc
文件和补丁队列。Normally you do
hg clone <remoteRepoPath> <localPath>
to do that, which automatically updates the working directory.Since you did an
hg init
and thenhg pull
from the remote repo, you need to dohg update
and it will fill the working directory with the actual files.All those
.i
files under the.hg
directory are the repository's storage and indexes and such. Very rarely does anybody mess with those manually. Most of the time the only thing people touch under the.hg
directory is thehgrc
file and patch queues.