Differences between revisions 1 and 11 (spanning 10 versions)
Revision 1 as of 2006-09-15 06:23:47
Size: 1820
Editor: BenLuo
Comment:
Revision 11 as of 2012-09-05 06:15:41
Size: 2255
Editor: 219
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#language zh
Line 3: Line 5:
In TutorialShareChange, we learned how to propagate a ChangeSet from one repository to another. There are other ways of sharing changes between repositories and people, one of the most common is through email. 在[[ChineseTutorialShareChange|《教程 - 和别人分享改变》]]中我们学到如何把[[ChangeSet|变更集]]从一个仓库传递到另一个仓库去。有很多其它的方式在人和仓库之间分享改变,其中最常见的一种是通过电子邮件。
Line 5: Line 7:
After we have ["Commit"]ted a change, we can ["Export"] it to a file, and email the file as an attachment to someone else. 我们[[Commit|提交(Commit)]]改变后, 我们可以[[Export|导出(Export)]] 它到一个文件里,并把这个文件作为附件 email 给其它人。
Line 7: Line 9:
To ["Export"] a change, we use the {{{export}}} command. We must provide a ["Tag"], RevisionNumber or ChangeSetID to tell ["Mercurial"] what to ["Export"]. In our case, we want to ["Export"] the ["Tip"]. Provided we're still in the {{{my-hello-share}}} directory, let's do just that. 我们用 {{{export}}} 命令来 [[Export|导出(Export)]] 改变。我们必需提供一个 [[Tag]], [[RevisionNumber|版本号]]或 [[ChangeSetID|变更集号]] 来告诉 [[ChineseMercurial|Mercurial]] 有什么进入了 [[Export|导出(Export)]]。 在我们的这个案例中,我们希望[[Export|导出(Export)]] [[Tip]]。假设我们还在 {{{my-hello-share}}} 这个目录里,让我们做。
Line 29: Line 31:
By default, ["Export"] just displays the patch, so usually we redirect the output to a file. This file is a PatchFile in UnifiedDiff format, with some extra information that tells ["Mercurial"] how to ["Import"] it. 缺省情况下,[[Export|导出(Export)]]只显示补丁,所以我们通常把输出重定向到一个文件中(或使用参数-o)。这个文件是一个 UnifiedDiff 格式的[[PatchFile|补丁文件]],这个文件还带了一些扩展的信息告诉 [[ChineseMercurial|Mercurial]] 如何 [[Import|导入(Import)]] 它.
Line 31: Line 33:
When the recipient receives our email, they will save the attachment and use the {{{import}}} command to ["Import"] the ChangeSet into their [:Repository:仓库]. (As of version 0.7, ["Mercurial"] ignores some of this information, making imports that involve merges problematic.) 当收件人收到我们的邮件,他们将保存附件并使用 {{{import}}} 命令来把[[ChangeSet|变更集]][[Import|导入(Import)]]到他们的[[Repository|仓库]]中去。 (在0.7版本中, [[ChineseMercurial|Mercurial]] 忽略了其中的一些信息,做导入(import)会引起一合并的问题。)
Line 33: Line 35:
Let's put ourselves in the position of such a recipient, and learn how to ["Merge"] a change in ChineseTutorialMerge. 让我们站在现有的基础上在[[ChineseTutorialMerge|《教程 - 合并改变》]]里来学习如何 [[ChineseTutorialMerge|合并]] 一个改变。
----
CategoryChinese

教程 - 和别人分享改变

《教程 - 和别人分享改变》中我们学到如何把变更集从一个仓库传递到另一个仓库去。有很多其它的方式在人和仓库之间分享改变,其中最常见的一种是通过电子邮件。

我们提交(Commit)改变后, 我们可以导出(Export) 它到一个文件里,并把这个文件作为附件 email 给其它人。

我们用 export 命令来 导出(Export) 改变。我们必需提供一个 Tag, 版本号变更集号 来告诉 Mercurial 有什么进入了 导出(Export)。 在我们的这个案例中,我们希望导出(Export) Tip。假设我们还在 my-hello-share 这个目录里,让我们做。

$ hg export tip
# HG changeset patch
# User mpm@selenic.com
# Node ID a58809af174d89a3afbbbb48008d34deb30d8574
# Parent  82e55d328c8ca4ee16520036c0aaace03a5beb65
Express great joy at existence of Mercurial

diff -r 82e55d328c8c -r a58809af174d hello.c
--- a/hello.c   Fri Aug 26 08:21:28 2005
+++ b/hello.c   Fri Aug 26 08:26:28 2005
@@ -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;
 }

缺省情况下,导出(Export)只显示补丁,所以我们通常把输出重定向到一个文件中(或使用参数-o)。这个文件是一个 UnifiedDiff 格式的补丁文件,这个文件还带了一些扩展的信息告诉 Mercurial 如何 导入(Import) 它.

当收件人收到我们的邮件,他们将保存附件并使用 import 命令来把变更集导入(Import)到他们的仓库中去。 (在0.7版本中, Mercurial 忽略了其中的一些信息,做导入(import)会引起一合并的问题。)

让我们站在现有的基础上在《教程 - 合并改变》里来学习如何 合并 一个改变。


CategoryChinese

ChineseTutorialExport (last edited 2012-09-05 06:15:41 by 219)