Skip to content
Snippets Groups Projects
Commit e58d9afe authored by Felipe Resende's avatar Felipe Resende
Browse files

subrepo: propagate non-default path on outgoing

There was already a fix made in 5dbff89cf107 for pull and push commands. I did
the same for the outgoing command.

The problem I identified is that when the parent repository has multiple paths,
the outgoing command was not respecting the parent path used and was always
using the default path for subrepositories.
parent edd990d9
No related merge requests found
......@@ -1420,5 +1420,5 @@
)
def outgoing(ui, repo, dests, opts, subpath=None):
def display_outgoing_revs(ui, repo, o, opts):
if opts.get(b'graph'):
......@@ -1424,33 +1424,18 @@
if opts.get(b'graph'):
logcmdutil.checkunsupportedgraphflags([], opts)
o, others = _outgoing(ui, repo, dests, opts, subpath=subpath)
ret = 1
try:
if o:
ret = 0
if opts.get(b'graph'):
revdag = logcmdutil.graphrevs(repo, o, opts)
ui.pager(b'outgoing')
displayer = logcmdutil.changesetdisplayer(
ui, repo, opts, buffered=True
)
logcmdutil.displaygraph(
ui, repo, revdag, displayer, graphmod.asciiedges
)
else:
ui.pager(b'outgoing')
displayer = logcmdutil.changesetdisplayer(ui, repo, opts)
for n in _outgoing_filter(repo, o, opts):
displayer.show(repo[n])
displayer.close()
for oth in others:
cmdutil.outgoinghooks(ui, repo, oth, opts, o)
ret = min(ret, _outgoing_recurse(ui, repo, dests, opts))
return ret # exit code is zero since we found outgoing changes
finally:
for oth in others:
oth.close()
revdag = logcmdutil.graphrevs(repo, o, opts)
ui.pager(b'outgoing')
displayer = logcmdutil.changesetdisplayer(
ui, repo, opts, buffered=True
)
logcmdutil.displaygraph(
ui, repo, revdag, displayer, graphmod.asciiedges
)
else:
ui.pager(b'outgoing')
displayer = logcmdutil.changesetdisplayer(ui, repo, opts)
for n in _outgoing_filter(repo, o, opts):
displayer.show(repo[n])
displayer.close()
def _outgoing_filter(repo, revs, opts):
......@@ -1486,8 +1471,12 @@
return ret
def _outgoing(ui, repo, dests, opts, subpath=None):
out = set()
others = []
_no_subtoppath = object()
def outgoing(ui, repo, dests, opts, subpath=None):
if opts.get(b'graph'):
logcmdutil.checkunsupportedgraphflags([], opts)
ret = 1
for path in urlutil.get_push_paths(repo, ui, dests):
dest = path.loc
......@@ -1492,11 +1481,10 @@
for path in urlutil.get_push_paths(repo, ui, dests):
dest = path.loc
if subpath is not None:
subpath = urlutil.url(subpath)
if subpath.isabs():
dest = bytes(subpath)
else:
p = urlutil.url(dest)
if p.islocal():
normpath = os.path.normpath
prev_subtopath = getattr(repo, "_subtoppath", _no_subtoppath)
try:
repo._subtoppath = dest
if subpath is not None:
subpath = urlutil.url(subpath)
if subpath.isabs():
dest = bytes(subpath)
else:
......@@ -1502,6 +1490,10 @@
else:
normpath = posixpath.normpath
p.path = normpath(b'%s/%s' % (p.path, subpath))
dest = bytes(p)
branches = path.branch, opts.get(b'branch') or []
p = urlutil.url(dest)
if p.islocal():
normpath = os.path.normpath
else:
normpath = posixpath.normpath
p.path = normpath(b'%s/%s' % (p.path, subpath))
dest = bytes(p)
branches = path.branch, opts.get(b'branch') or []
......@@ -1507,6 +1499,10 @@
ui.status(_(b'comparing with %s\n') % urlutil.hidepassword(dest))
revs, checkout = addbranchrevs(repo, repo, branches, opts.get(b'rev'))
if revs:
revs = [repo[rev].node() for rev in logcmdutil.revrange(repo, revs)]
ui.status(_(b'comparing with %s\n') % urlutil.hidepassword(dest))
revs, checkout = addbranchrevs(
repo, repo, branches, opts.get(b'rev')
)
if revs:
revs = [
repo[rev].node() for rev in logcmdutil.revrange(repo, revs)
]
......@@ -1512,22 +1508,29 @@
other = peer(repo, opts, dest)
try:
outgoing = discovery.findcommonoutgoing(
repo, other, revs, force=opts.get(b'force')
)
o = outgoing.missing
out.update(o)
if not o:
scmutil.nochangesfound(repo.ui, repo, outgoing.excluded)
others.append(other)
except: # re-raises
other.close()
raise
# make sure this is ordered by revision number
outgoing_revs = list(out)
cl = repo.changelog
outgoing_revs.sort(key=cl.rev)
return outgoing_revs, others
other = peer(repo, opts, dest)
try:
outgoing = discovery.findcommonoutgoing(
repo, other, revs, force=opts.get(b'force')
)
o = outgoing.missing
if not o:
scmutil.nochangesfound(repo.ui, repo, outgoing.excluded)
else:
ret = 0
cl = repo.changelog
o.sort(key=cl.rev)
display_outgoing_revs(ui, repo, o, opts)
cmdutil.outgoinghooks(ui, repo, other, opts, o)
ret = min(ret, _outgoing_recurse(ui, repo, dests, opts))
except: # re-raises
raise
finally:
other.close()
finally:
if prev_subtopath is _no_subtoppath:
del repo._subtoppath
else:
repo._subtoppath = prev_subtopath
def verify(repo, level=None):
......
......@@ -133,5 +133,23 @@
$ hg out -G -R test-repo-bare ./branch-E-push ./branch-G-push ./branch-H-push
comparing with ./branch-E-push
searching for changes
o changeset: 7:40faebb2ec45
tag: tip
parent: 2:f838bfaca5c7
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: H
o changeset: 6:c521a06b234b
| user: test
| date: Thu Jan 01 00:00:00 1970 +0000
| summary: G
|
o changeset: 5:2f3a4c5c1417
parent: 1:27547f69f254
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: F
comparing with ./branch-G-push
searching for changes
......@@ -136,7 +154,5 @@
comparing with ./branch-G-push
searching for changes
comparing with ./branch-H-push
searching for changes
o changeset: 7:40faebb2ec45
| tag: tip
| parent: 2:f838bfaca5c7
......@@ -144,17 +160,6 @@
| date: Thu Jan 01 00:00:00 1970 +0000
| summary: H
|
| o changeset: 6:c521a06b234b
| | user: test
| | date: Thu Jan 01 00:00:00 1970 +0000
| | summary: G
| |
| o changeset: 5:2f3a4c5c1417
| parent: 1:27547f69f254
| user: test
| date: Thu Jan 01 00:00:00 1970 +0000
| summary: F
|
| o changeset: 4:a603bfb5a83e
| | user: test
| | date: Thu Jan 01 00:00:00 1970 +0000
......@@ -170,6 +175,29 @@
date: Thu Jan 01 00:00:00 1970 +0000
summary: C
comparing with ./branch-H-push
searching for changes
o changeset: 6:c521a06b234b
| user: test
| date: Thu Jan 01 00:00:00 1970 +0000
| summary: G
|
o changeset: 5:2f3a4c5c1417
parent: 1:27547f69f254
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: F
o changeset: 4:a603bfb5a83e
| user: test
| date: Thu Jan 01 00:00:00 1970 +0000
| summary: E
|
o changeset: 3:b3325c91a4d9
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: D
$ hg bundle -R test-repo-bare bundle.hg ./branch-E-push ./branch-G-push ./branch-H-push
searching for changes
searching for changes
......@@ -339,5 +367,12 @@
$ hg out -G -R test-repo-bare ./branch-E-push ./branch-G-push ./branch-H-push --rev default
comparing with ./branch-E-push
searching for changes
o changeset: 7:40faebb2ec45
tag: tip
parent: 2:f838bfaca5c7
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: H
comparing with ./branch-G-push
searching for changes
......@@ -342,8 +377,5 @@
comparing with ./branch-G-push
searching for changes
comparing with ./branch-H-push
searching for changes
no changes found
o changeset: 7:40faebb2ec45
| tag: tip
| parent: 2:f838bfaca5c7
......@@ -356,6 +388,9 @@
date: Thu Jan 01 00:00:00 1970 +0000
summary: C
comparing with ./branch-H-push
searching for changes
no changes found
$ hg bundle -R test-repo-bare bundle.hg ./branch-E-push ./branch-G-push ./branch-H-push --rev default
searching for changes
searching for changes
......@@ -422,11 +457,6 @@
$ hg out -G -R test-repo-bare ./branch-G-push ./branch-H-push ./branch-E-push --rev default
comparing with ./branch-G-push
searching for changes
comparing with ./branch-H-push
searching for changes
no changes found
comparing with ./branch-E-push
searching for changes
o changeset: 7:40faebb2ec45
| tag: tip
| parent: 2:f838bfaca5c7
......@@ -439,6 +469,18 @@
date: Thu Jan 01 00:00:00 1970 +0000
summary: C
comparing with ./branch-H-push
searching for changes
no changes found
comparing with ./branch-E-push
searching for changes
o changeset: 7:40faebb2ec45
tag: tip
parent: 2:f838bfaca5c7
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: H
$ hg bundle -R test-repo-bare bundle.hg ./branch-G-push ./branch-H-push ./branch-E-push --rev default
searching for changes
searching for changes
......
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