host1にマスターリポジトリがあり、host2のリポジトリを更新しました。hg push
host2からhost1への変更を
[mpenning@host2 login]$ hg push ssh://host1//opt/python/login
ただし、更新またはマージしようとすると、
[mpenning@host1 login]$ hg update
abort: outstanding uncommitted merges
[mpenning@host1 login]$ hg merge
abort: outstanding uncommitted merges
[mpenning@host1 login]$
host1からも試しましたhg pull
が、それも機能しませんでした...
[mpenning@host1 login]$ hg pull ssh://host2//opt/python/login
running ssh host2 'hg -R /opt/python/login serve --stdio'
mpenning@host2's password:
pulling from ssh://host2//opt/python/login
searching for changes
no changes found
[mpenning@host1 login]$ hg merge
abort: outstanding uncommitted merges
[mpenning@host1 login]$
host2からの変更でhost1のマスターリポジトリを更新するにはどうすればよいですか?
host1のリポジトリに関する詳細情報...
[mpenning@host1 login]$ hg parents
changeset: 27:6d530d533997
user: Mike Pennington <d.pennington@foo.local>
date: Wed Sep 26 11:44:51 2012 -0500
files: mp_getconf.py
description:
fix issue where config retrieval was broken
changeset: 29:eaf3b5aacfe6
user: Mike Pennington <d.pennington@foo.local>
date: Wed Sep 26 11:43:15 2012 -0500
files: mp_getconf.py
description:
fix artifact of using the script to run generic commands, but this broke config retrieval
[mpenning@host1 login]$