##// END OF EJS Templates
Add --no-commit option to import command
Joel Rosdahl -
r5936:00dfc810 default
parent child Browse files
Show More
@@ -1528,6 +1528,7 b' def import_(ui, repo, patch1, *patches, '
1528 1528 files=files)
1529 1529 finally:
1530 1530 files = patch.updatedir(ui, repo, files)
1531 if not opts.get('no_commit'):
1531 1532 n = repo.commit(files, message, user, date)
1532 1533 if opts.get('exact'):
1533 1534 if hex(n) != nodeid:
@@ -2896,6 +2897,7 b' table = {'
2896 2897 ('b', 'base', '', _('base path')),
2897 2898 ('f', 'force', None,
2898 2899 _('skip check for outstanding uncommitted changes')),
2900 ('', 'no-commit', None, _("don't commit, just update the working directory")),
2899 2901 ('', 'exact', None,
2900 2902 _('apply patch to the nodes from which it was generated')),
2901 2903 ('', 'import-branch', None,
General Comments 0
You need to be logged in to leave comments. Login now