Skip to content
Snippets Groups Projects
Commit f05962b0 authored by Durham Goode's avatar Durham Goode
Browse files

paths: mark git repos as valid paths

The latest version of Mercurial validates that a path contains the .hg
directory. This breaks when pulling/pushing to git repos.

This patch makes a gitrepo a valid path as well.
parent f7d01752
No related branches found
No related tags found
No related merge requests found
......@@ -275,6 +275,12 @@
return newpeer
extensions.wrapfunction(hg, 'peer', peer)
def isvalidlocalpath(orig, self, path):
return orig(self, path) or _isgitdir(path)
if (hgutil.safehasattr(hgui, 'path') and
hgutil.safehasattr(hgui.path, '_isvalidlocalpath')):
extensions.wrapfunction(hgui.path, '_isvalidlocalpath', isvalidlocalpath)
@util.transform_notgit
def exchangepull(orig, repo, remote, heads=None, force=False, bookmarks=(),
**kwargs):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment