Daniel Liew wrote: > git-remote-hg : Enable use of, $GIT_DIR/hg/origin/clone/.hg/hgrc > > Use the hgrc configuration file in the internal mercurial repository in > addition to the other system wide hgrc files. This is done by using the > 'ui' object from the 'repository' object which will have loaded the > repository hgrc file if it exists. What is the problem you are trying to solve? Is there a way to test that this code is working correctly? > Prior to this patch the mercurial repository's hgrc file was ignored > which I consider to be a bug. It might be, although the internal repository is not supposed to be used by the user. > Signed-off-by: Dan Liew <delcypher@xxxxxxxxx> > --- > contrib/remote-helpers/git-remote-hg | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/contrib/remote-helpers/git-remote-hg > b/contrib/remote-helpers/git-remote-hg > index eb89ef6..451842a 100755 > --- a/contrib/remote-helpers/git-remote-hg > +++ b/contrib/remote-helpers/git-remote-hg > @@ -421,7 +421,7 @@ def get_repo(url, alias): > > repo = hg.repository(myui, local_path) > try: > - peer = hg.peer(myui, {}, url) > + peer = hg.peer(repo._unfilteredrepo.ui, {}, url) Why not repo.unfiltered.ui? Or just repo.ui. Cheers. -- Felipe Contreras -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html