Tag Archive
The following is a list of all entries tagged with Hg:
在Mercurial(HG)中使用Meld的方法
Filed in 工具, 2011 年 11 月 06 日, 14:30编辑hg配置文件。我用的是Ubuntu,全局的配置文件hgrc放在 /etc/mercurial 目录下,其他操作系统可能不一样。 在hgrc中增加如下设置: [extensions] hgext.extdiff = [extdiff] cmd.meld = 之后就可以使用hg meld命令来查看不同了。 详细介绍请猛击这里。
解决Hg提交时提示“abort: no username supplied (see “hg help config”)”的问题
Filed in 工具, 2011 年 10 月 30 日, 22:35进行“hg ci”操作时,提示“abort: no username supplied (see “hg help config”)”,这是因为没有给Hg配置用户名的原因。解决方法如下: 打开.hg目录下的hgrc文件,追加如下内容: [ui] username = 你的名字