equal
deleted
inserted
replaced
1048 onlyheads=heads, |
1048 onlyheads=heads, |
1049 force=opts.get('force'), |
1049 force=opts.get('force'), |
1050 portable=True) |
1050 portable=True) |
1051 cg = repo.getlocalbundle('bundle', outgoing) |
1051 cg = repo.getlocalbundle('bundle', outgoing) |
1052 if not cg: |
1052 if not cg: |
1053 scmutil.nochangesfound(ui, outgoing and outgoing.excluded) |
1053 scmutil.nochangesfound(ui, repo, outgoing and outgoing.excluded) |
1054 return 1 |
1054 return 1 |
1055 |
1055 |
1056 changegroup.writebundle(cg, fname, bundletype) |
1056 changegroup.writebundle(cg, fname, bundletype) |
1057 |
1057 |
1058 @command('cat', |
1058 @command('cat', |