##// END OF EJS Templates
record: make record use commit -i
Laurent Charignon -
r24307:7fcd9f4a default
parent child Browse files
Show More
@@ -49,7 +49,8 b' def record(ui, repo, *pats, **opts):'
49
49
50 This command is not available when committing a merge.'''
50 This command is not available when committing a merge.'''
51
51
52 cmdutil.dorecord(ui, repo, commands.commit, 'commit', False, *pats, **opts)
52 opts["interactive"] = True
53 commands.commit(ui, repo, *pats, **opts)
53
54
54 def qrefresh(origfn, ui, repo, *pats, **opts):
55 def qrefresh(origfn, ui, repo, *pats, **opts):
55 if not opts['interactive']:
56 if not opts['interactive']:
General Comments 0
You need to be logged in to leave comments. Login now