在 Mercurial 中找不到文件

发布于 2024-09-09 05:19:40 字数 456 浏览 3 评论 0原文

我是一个善变的菜鸟,正在挠头试图弄清楚这一点。

我过去已将文件添加到存储库中。回购协议知道这一点:

hg日志Purchase.php

changeset:   40:0bb0a5041ae9
parent:      36:b1627cf0f7a3
user:        josh
date:        Wed Jun 30 21:41:07 2010 +0530
summary:     purchase logic

,如果我执行hg pull,则不会包含Purchase.php。 status 对此一无所知。怎么把这个文件取出来呢?

> hg status Purchase.php

Purchase.php: No such file or directory

I am a mercurial noob, and am scratching my head trying to figure this out.

I have added a file to the repository in the past. The repo knows about it:

hg log Purchase.php

changeset:   40:0bb0a5041ae9
parent:      36:b1627cf0f7a3
user:        josh
date:        Wed Jun 30 21:41:07 2010 +0530
summary:     purchase logic

now, if I do a hg pull, Purchase.php is not included. status does not know about it. How do I get this file out?

> hg status Purchase.php

Purchase.php: No such file or directory

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

瑾夏年华 2024-09-16 05:19:40

hg pull 仅将远程变更集拉取到本地存储库,对您的工作目录不执行任何操作。您需要使用 hg update 从本地存储库更新工作目录。

使用Mercurial 快速入门 用于获取 Mercurial 操作的可视化模型的备忘单。基本概念是“存储库”、“工作目录”、“变更集”以及代表 Mercurial 命令的各种动词。

hg pull only pulls remote changesets to your local repo doing nothing to your working directory. You need to update your working directory from your local repo using hg update.

Use the Mercurial Quick Start cheatsheet for getting the visual model of Mercurial operations. The basic concepts are "repository", "working directory", "changeset" and various verbs that stand for Mercurial commands.

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