灵感来自Git初学者:权威的实用指南。
这是一个关于初学者实际使用Mercurial的信息汇编。
初学者——一个接触过源代码控制却没有很好地理解它的程序员。
实用——涵盖大多数用户经常遇到的情况——创建存储库、分支、合并、从远程存储库拉/推到远程存储库等等。
注:
解释如何完成某件事,而不是解释某件事是怎样的
实现的。
回答一个问题。
回答清楚,尽可能简洁。
上编辑/扩展现有答案,而不是创建新答案
同样的话题。
请为想了解更多的人提供Mercurial wiki或HG Book的链接。
问题:
安装/设置
如何安装Mercurial?
如何设置Mercurial?
如何创建一个新的项目/存储库?
如何将其配置为忽略文件?
使用代码
How do you get the latest code?
How do you check out code?
How do you commit changes?
How do you see what's uncommitted, or the status of your current codebase?
How do you remove files from the repository?
How do you destroy unwanted commits?
How do you compare two revisions of a file, or your current file and a previous revision?
How do you see the history of revisions to a file or repository?
How do you handle binary files (visio docs, for instance, or compiler environments)?
How do you merge files changed at the "same time"?
How do you revert a Changeset?
How do you go back to a previous version of the code?
How do you extract a patch from a specific changeset?
How do you record that you renamed or deleted a file without using the Mercurial command?
标记、分支、发布、基线
你如何“标记”、“标记”或“发布”一组特定文件的特定修订,以便以后总是可以提取它?
你如何进行特定的“释放”?
你如何分支?
如何合并分支?
如何将一个分支的部分合并到另一个分支中?
其他
好的GUI/IDE插件Mercurial?优点/缺点?
还有其他初学者应该知道的常见任务吗?
如何与Subversion交互?
其他Mercurial参考资料
Mercurial:权威指南
Mercurial维基
满足Mercurial |偷窥码屏幕播放
掌握Mercurial | TekPub屏幕播放
Hg初始化-接地水银教程
如何签出代码?
hg clone [OPTION]... SOURCE [DEST]
选项为:
-U --noupdate the clone will only contain a repository (no working copy)
-r --rev a changeset you would like to have after cloning
--pull use pull protocol to copy metadata
--uncompressed use uncompressed transfer (fast over LAN)
-e --ssh specify ssh command to use
--remotecmd specify hg command to run on the remote side
其中source是存储库中原始文件的源,可以是远程URL或文件系统目录。例如:
http://bitbucket.org/scrum8/django-wmd-editor/
/home/username/repository/django-wmd-editor /
ssh: / / myusername@scrum8.com/ ~ /仓库/ django-wmd-editor /
destination是源代码在本地文件系统中的位置。
如何恢复变更集?
有几个选项
简单方法(撤销单个更改集)
$ hg backout -m 'back out second change' tip
reverting myfile
changeset 2:01adc4672142 backs out changeset 1:7e341ee3be7a
$ cat myfile
first change
Hard Way(手动区分和应用)
步骤1:创建一个补丁文件来恢复版本107和108之间的更改:
hg diff -r107 -r108 --reverse > revert-change.patch
(或者,hg diff -r108 -r107加上no——reverse也会做同样的事情)
第二步:应用补丁文件:
patch -p1 < revert-change.patch
有些差异可能不适用,例如:
Hunk #3 FAILED at 517.
1 out of 3 hunks FAILED -- saving rejects to file 'foo/bar.c.rej'
.rej文件将包含应用失败的diff的内容,您需要查看一下。
如何设置Mercurial?
Mercurial将其配置信息存储在~/中。*nix系统为%UserProfile%\ mercury .ini, Windows系统为%UserProfile%\ mercury .ini。(%UserProfile%在Windows 2000或Windows XP系统上通常是“C:\Documents and Settings\[username]\”,在Windows Vista和Windows 7系统上通常是C:\ users \[username]\)
首先,你应该在你的.hgrc或mercury .ini中设置你的Mercurial用户名:
# This is a Mercurial configuration file.
[ui]
username = Firstname Lastname <email.address@example.net>
Windows系统上的TortoiseHg用户也可以执行hgtk userconfig命令
参见“Mercurial:权威指南”第2章中的“创建Mercurial配置文件”。