Mercurial > public > mercurial-scm > hg
diff mercurial/mdiff.py @ 2907:8b02af865990
Add diff --git option
author | Brendan Cully <brendan@kublai.com> |
---|---|
date | Mon, 14 Aug 2006 22:48:03 -0700 |
parents | 4ec58b157265 |
children | d838bfac668d |
line wrap: on
line diff
--- a/mercurial/mdiff.py Mon Aug 14 15:51:35 2006 -0700 +++ b/mercurial/mdiff.py Mon Aug 14 22:48:03 2006 -0700 @@ -23,6 +23,7 @@ '''context is the number of context lines text treats all files as text showfunc enables diff -p output + git enables the git extended patch format ignorews ignores all whitespace changes in the diff ignorewsamount ignores changes in the amount of whitespace ignoreblanklines ignores changes whose lines are all blank''' @@ -31,6 +32,7 @@ 'context': 3, 'text': False, 'showfunc': True, + 'git': False, 'ignorews': False, 'ignorewsamount': False, 'ignoreblanklines': False,