equal
deleted
inserted
replaced
4351 |
4351 |
4352 Returns 0 if there are outgoing changes, 1 otherwise. |
4352 Returns 0 if there are outgoing changes, 1 otherwise. |
4353 """ |
4353 """ |
4354 if opts.get('graph'): |
4354 if opts.get('graph'): |
4355 cmdutil.checkunsupportedgraphflags([], opts) |
4355 cmdutil.checkunsupportedgraphflags([], opts) |
4356 o = hg._outgoing(ui, repo, dest, opts) |
4356 o, other = hg._outgoing(ui, repo, dest, opts) |
4357 if not o: |
4357 if not o: |
4358 return |
4358 return |
4359 |
4359 |
4360 revdag = cmdutil.graphrevs(repo, o, opts) |
4360 revdag = cmdutil.graphrevs(repo, o, opts) |
4361 displayer = cmdutil.show_changeset(ui, repo, opts, buffered=True) |
4361 displayer = cmdutil.show_changeset(ui, repo, opts, buffered=True) |