Mercurial > hg-stable
changeset 3698:a9090b264250
qrefresh: respect --git even in the slow path
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Mon, 20 Nov 2006 19:32:41 -0200 |
parents | da262f35fbc8 |
children | 4bafcf7aeb32 |
files | hgext/mq.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/mq.py Mon Nov 20 19:32:40 2006 -0200 +++ b/hgext/mq.py Mon Nov 20 19:32:41 2006 -0200 @@ -966,6 +966,8 @@ comments = "\n".join(comments) + '\n\n' patchf.write(comments) + if opts.get('git'): + self.diffopts().git = True fns, matchfn, anypats = cmdutil.matchpats(repo, pats, opts) tip = repo.changelog.tip() if top == tip: @@ -1021,8 +1023,6 @@ r = util.unique(dd) a = util.unique(aa) filelist = filter(matchfn, util.unique(m + r + a)) - if opts.get('git'): - self.diffopts().git = True patch.diff(repo, patchparent, files=filelist, match=matchfn, fp=patchf, changes=(m, a, r, [], u), opts=self.diffopts())