Differences between revisions 1 and 14 (spanning 13 versions)
Revision 1 as of 2006-09-15 06:18:57
Size: 5303
Editor: BenLuo
Comment:
Revision 14 as of 2012-09-03 09:27:44
Size: 5917
Editor: 219
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
== 教程 - 生成第一个改变 == #language zh
Line 3: Line 3:
Carrying forward from TutorialHistory, we are inside our {{{my-hello}}} repository that we ["Clone"]d in TutorialClone. == 教程 - 生成第一个[变更] ==
Line 5: Line 5:
It is good ["Mercurial"] development practice to isolate each change in a separate [:Repository:仓库]. This prevents unrelated code from getting mixed up, and makes it easier to test individual chunks of work one by one. Let's start out by following that model. 完成了[[ChineseTutorialHistory|教程-历史]] 的学习之后, 我们来到 {{{my-hello}}} [仓库]里面,就是我们在 [[ChineseTutorialClone|教程-克隆]]中 [克隆] 得到的。
Line 7: Line 7:
Our silly goal is to get the "hello, world" program to print another line of output. First, we create a new repository called {{{my-hello-new-output}}}, by cloning from {{{my-hello}}}, for our little project. 在 [[Mercurial]] 开发实践中一个好的做法是把每个变更隔离在各自的[[Repository|仓库]]里。这样可以避免把不相关的代码混杂起来, 并且便于一个接一个的测试每一部分工作。我们现在就开始采用这一模式。

我们的目标很简单,让“hello, world”程序打印另外一行输出。 首先, 我们给这个小项目创建一个新的仓库叫做 {{{my-hello-new-output}}},方法是对{{{my-hello}}}做克隆。
Line 14: Line 16:
In this case, the clone command prints no output if it succeeds. updating to branch default
2 files updated, 0 files merged, 0 files removed, 0 files unresolved
Line 16: Line 19:
'''注:''' Notice that we have given our new [:Repository:仓库] a descriptive name, basically identifying the purpose of the [:Repository:仓库]. Since making a ["Clone"] of a [:Repository:仓库] in ["Mercurial"] is cheap, we will quickly accumulate many slightly different repositories. If we do not give these repositories descriptive names, we will rapidly lose the ability to tell them apart. '''注:''' 注意我们给新的 [[Repository|仓库]] 命名了一个描述性 的名字,基本上是说明这个[[Repository|仓库]]的目的。 在[[Mercurial]]里面给一个[[Repository|仓库]]创建[克隆]很方便,我们会很快的积攒起很多稍微不同的仓库。如果我们不给他们描述性的命名, 很快就会没法分辨它们。
Line 18: Line 21:
Now it's time to make a change in the new repository. Let's go into the WorkingDirectory, which is simply our name for the directory where all the files are, and modify the source code with our favorite editor: 现在可以在新的仓库里面进行修改了 。 我们进入[[WorkingDirectory|工作目录]],使用我们喜欢的编辑软件修改源文件。
Line 22: Line 25:
$ vi hello.c
}}}
Line 25: Line 26:
The contents of {{{hello.c}}} initially look like this:

{{{#!cplusplus numbers=off
/*
 * hello.c
 *
Line 46: Line 41:
Let's edit {{{main}}} so that it prints an extra line of output: 我们要修改 {{{main}}} 让它再多打印一行输出:
Line 59: Line 54:
Once we're done, we quit out of our favorite editor, and we're done. That's it. The edit is now ready for us to create a ChangeSet. 完成之后退出我们喜欢的编辑器,任务完成。 有了刚才的修改我们就可以创建一个[变更集]。
Line 61: Line 56:
But what if we're been interrupted, and we've forgotten what changes are going to make it into the ChangeSet once we create it? For this, we use the {{{status}}} command. 可是万一我们被别的事情打扰,在创建变更集之后忘记了它里面有哪些变更,怎么办呢? 这时候我们要用到{{{status}}}命令。
Line 68: Line 63:
The output is terse, but prefix {{{M}}} is simply telling us that {{{hello.c}}} has been modified, so our change is ready to go into a ChangeSet. 输出很简短。总之以 {{{M}}} 开头的行意思就是{{{hello.c}}}文件修改过了,那么我们的变更已经可以加入一个变更集了。
Line 70: Line 65:
We may also examine the actual changes we have made to the file using the {{{diff}}} command: 使用 {{{diff}}} 命令我们可以检查文件实际的改变:
Line 86: Line 82:
<!> In case we wish to '''discard''' our changes and start over, we may use the {{{revert}}} command to restore the files to their unmodified state. Just make sure you know this is what you really want. <!> 万一我们希望'''放弃'''我们的变更并重新开始,我们可以用{{{revert}}}命令来恢复{{{hello.c}}}到我们没有更改的状态(或者用{{{--all}}}选项来恢复所有文件)。请确认你确实知道这是你真的希望做的(参见 [[Revert]])。
Line 89: Line 85:
$ hg revert $ hg revert hello.c
}}}
{{{revert}}}重命名被编辑文件{{{hello.c}}}为{{{hello.c.orig}}}并恢复{{{hello.c}}}到它的未编辑状态。
{{{status}}}命令现在会将{{{hello.c.orig}}}视为不被追踪的(以"?"为前缀)。
{{{
$ hg st
? hello.c.orig
Line 92: Line 94:
The act of creating a ChangeSet is called ["Commit"]ting it. We perform a ["Commit"] using the {{{commit}}} command: 如果我们又改变主意想要重用我们做的修改,我们只需要移除未编辑状态的{{{hello.c}}}然后重命名我们改过的{{{hello.c.orig}}}为{{{hello.c}}}
{{{
$ rm hello.c
$ mv hello.c.orig hello.c
$ hg st
M hello.c
}}}

创建一个变更集的动作称为[[Commit|提交]]它。我们用{{{commit}}}命令来执行[[Commit|提交]]。
Line 98: Line 108:
This drops us into an editor, and presents us with a few cryptic lines of text. 这个命令把我们带到一个编辑器内,同时给我们展示了几行语焉不详的文字。
Line 100: Line 110:
'''Note:''' The default editor is {{{vi}}}. This can be changed using the {{{EDITOR}}} or {{{HGEDITOR}}} environment variables. Also, the manifest hash might be different, depending on how you typed and saved the file. '''注:''' 缺省的编辑器是{{{vi}}}。这可以用环境变量{{{EDITOR}}} 或 {{{HGEDITOR}}} 来改变。同样,根据你怎样输入和保存文件,变更集记录哈希表可能不一样。
Line 108: Line 118:
The first line is empty and the lines that follow identify the files that will go into this ChangeSet. 第一行是空的,接下来的几行标明哪些文件将进入本变更集。T
Line 110: Line 120:
To ["Commit"] the ChangeSet, we must describe the reason for it. This is usually called a ChangeSet comment. Let's type something like this: 为了[[Commit|提交]]变更集,我们必须描述它的原因。这通常称为变更集注释。让我们输入一些:
Line 118: Line 128:
Next, we save the test and quit the editor, and, if all goes well, the {{{commit}}} command will exit and prints no output. <!> If you quit the editor without saving the text, {{{commit}}} will abort the operation, so you may change your mind before committing. 接着,我保存测试并退出编辑器,如果一切正常,{{{commit}}}命令将没有任何提示地退出。 <!> 如果你在没有保存文本的情况下退出编辑器,{{{commit}}} 将中断操作,这样你可以在提交前改变你的想法。
Line 120: Line 130:
Let's see what the {{{status}}} command will tell us now? 让我们看看{{{status}}}命令现在告诉我们什么?
Line 126: Line 136:
Nothing! Our change has been ["Commit"]ted to a ChangeSet, so there's no modified file in need of a commit. Our ["Tip"] now matches our working directory contents. 什么也没有!我们的变更已经[[Commit|提交]]到变更集里了,那里没有修改的文件需要提交的。我们的[[Tip|末端]]现在和我们工作目录的内容一致了。
Line 128: Line 138:
We can now examine the change history for our new work: 我们现在可以为我们的新工作检查变更的历史:
Line 140: Line 150:
There it is! We've ["Commit"]ted a ChangeSet. 就是它了!我们已经[[Commit|提交]]了一个变更集。
Line 142: Line 152:
'''Note:''' The user, date, and ChangeSetID will of course vary. '''注:''' 用户,日期和[[ChangeSetID|变更集号]]当然和我的是不一样的。
Line 144: Line 154:
As we discussed in TutorialClone, the new ChangeSet only exists in this repository. This is a critical part of the way ["Mercurial"] works. 正如我们在[[ChineseTutorialClone|教程--复制]]中讨论的,新的[[ChangeSet|变更集]]只存在于本仓库中。 这是[[Mercurial]]关键的一部分工作方法。
Line 146: Line 156:
To share changes, we must continue to ChineseTutorialShareChange. 如果要分享变更,我们必须继续[[ChineseTutorialShareChange|教程 - 与别的仓库分享改变]]。
----
CategoryChinese

教程 - 生成第一个[变更]

完成了教程-历史 的学习之后, 我们来到 my-hello [仓库]里面,就是我们在 教程-克隆中 [克隆] 得到的。

Mercurial 开发实践中一个好的做法是把每个变更隔离在各自的仓库里。这样可以避免把不相关的代码混杂起来, 并且便于一个接一个的测试每一部分工作。我们现在就开始采用这一模式。

我们的目标很简单,让“hello, world”程序打印另外一行输出。 首先, 我们给这个小项目创建一个新的仓库叫做 my-hello-new-output,方法是对my-hello做克隆。

$ cd ..
$ hg clone my-hello my-hello-new-output

updating to branch default 2 files updated, 0 files merged, 0 files removed, 0 files unresolved

注: 注意我们给新的 仓库 命名了一个描述性 的名字,基本上是说明这个仓库的目的。 在Mercurial里面给一个仓库创建[克隆]很方便,我们会很快的积攒起很多稍微不同的仓库。如果我们不给他们描述性的命名, 很快就会没法分辨它们。

现在可以在新的仓库里面进行修改了 。 我们进入工作目录,使用我们喜欢的编辑软件修改源文件。

$ cd my-hello-new-output

 * Placed in the public domain by Bryan O'Sullivan
 *
 * This program is not covered by patents in the United States or other
 * countries.
 */

#include <stdio.h>

int main(int argc, char **argv)
{
        printf("hello, world!\n");
        return 0;
}

我们要修改 main 让它再多打印一行输出:

(...)

int main(int argc, char **argv)
{
        printf("hello, world!\n");
        printf("sure am glad I'm using Mercurial!\n");
        return 0;
}

完成之后退出我们喜欢的编辑器,任务完成。 有了刚才的修改我们就可以创建一个[变更集]。

可是万一我们被别的事情打扰,在创建变更集之后忘记了它里面有哪些变更,怎么办呢? 这时候我们要用到status命令。

$ hg status
M hello.c

输出很简短。总之以 M 开头的行意思就是hello.c文件修改过了,那么我们的变更已经可以加入一个变更集了。

使用 diff 命令我们可以检查文件实际的改变:

$ hg diff
diff -r 82e55d328c8c hello.c
--- a/hello.c   Fri Aug 26 01:21:28 2005 -0700
+++ b/hello.c   Fri Sep 30 10:27:47 2005 +0800
@@ -12,5 +12,6 @@
 int main(int argc, char **argv)
 {
        printf("hello, world!\n");
+       printf("sure am glad I'm using Mercurial!\n");
        return 0;
 }

<!> 万一我们希望放弃我们的变更并重新开始,我们可以用revert命令来恢复hello.c到我们没有更改的状态(或者用--all选项来恢复所有文件)。请确认你确实知道这是你真的希望做的(参见 Revert)。

$ hg revert hello.c

revert重命名被编辑文件hello.chello.c.orig并恢复hello.c到它的未编辑状态。 status命令现在会将hello.c.orig视为不被追踪的(以"?"为前缀)。

$ hg st
? hello.c.orig

如果我们又改变主意想要重用我们做的修改,我们只需要移除未编辑状态的hello.c然后重命名我们改过的hello.c.orighello.c

$ rm hello.c
$ mv hello.c.orig hello.c
$ hg st
M hello.c

创建一个变更集的动作称为提交它。我们用commit命令来执行提交

$ hg commit

这个命令把我们带到一个编辑器内,同时给我们展示了几行语焉不详的文字。

注: 缺省的编辑器是vi。这可以用环境变量EDITORHGEDITOR 来改变。同样,根据你怎样输入和保存文件,变更集记录哈希表可能不一样。

(empty line)
HG: manifest hash 14595beb70bcfb74bf227437d70c38878421c944
HG: changed hello.c

第一行是空的,接下来的几行标明哪些文件将进入本变更集。T

为了提交变更集,我们必须描述它的原因。这通常称为变更集注释。让我们输入一些:

Express great joy at existence of Mercurial
HG: manifest hash 14595beb70bcfb74bf227437d70c38878421c944
HG: changed hello.c

接着,我保存测试并退出编辑器,如果一切正常,commit命令将没有任何提示地退出。 <!> 如果你在没有保存文本的情况下退出编辑器,commit 将中断操作,这样你可以在提交前改变你的想法。

让我们看看status命令现在告诉我们什么?

$ hg status

什么也没有!我们的变更已经提交到变更集里了,那里没有修改的文件需要提交的。我们的末端现在和我们工作目录的内容一致了。

我们现在可以为我们的新工作检查变更的历史:

$ hg log
changeset:   2:a58809af174d
tag:         tip
user:        mpm@selenic.com
date:        Fri Aug 26 01:26:28 2005 -0700
summary:     Express great joy at existence of Mercurial

(...)

就是它了!我们已经提交了一个变更集。

注: 用户,日期和变更集号当然和我的是不一样的。

正如我们在教程--复制中讨论的,新的变更集只存在于本仓库中。 这是Mercurial关键的一部分工作方法。

如果要分享变更,我们必须继续教程 - 与别的仓库分享改变


CategoryChinese

ChineseTutorialFirstChange (last edited 2012-09-04 08:17:45 by 219)