可能重复:
Mercurial 简介
我最近的变化是远程的。我最后做对了吗?
$ hg pull
warning: code.google.com certificate with fingerprint d2:33:75:af:62:64:5b:75:dc:3f:bf:22:30:b6:27:13:ff:3f:90:fd not verified (check hostfingerprints or web.cacerts config setting)
pulling from https://niklasro@code.google.com/p/montao/
searching for changes
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
(run 'hg update' to get a working copy)
ubuntu@ubuntu:/media/Lexar/montao$ hg update
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
所以我不应该合并,我应该拉?
为什么没有两个开发人员如何协作的简单示例?
例如
Time Developer 1 Developer 2
hg clone hg clone
editing
hg commit
hg push
editing
hg pull
hg commit
hg push
像上面这样的 2 个开发人员之间的工作流示例可以更容易地理解什么是 hg pull、merg、update,而不是让我混淆 pull 和 merge。
例如,当有来自另一个地方的变更集时,我现在如何知道如何不获得 2 个正面。
我可能需要一个示例 2 个开发人员如何协作以及我如何进行远程更改。