解压 Mercurial 存储库文件

发布于 2024-12-01 09:38:48 字数 132 浏览 0 评论 0原文

我创建了一个存储库并将其与远程存储库同步。

这些文件经过压缩,每个文件都有一个 (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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白云不回头 2024-12-08 09:38:48

通常,您会执行 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 then hg pull from the remote repo, you need to do hg 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 the hgrc file and patch queues.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文