diff -r 453097750fbf -r 8b02af865990 mercurial/mdiff.py --- 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,