mercurial/cmdutil.py
changeset 44295 142d2a4cb69a
parent 44271 c791ed6a2154
child 44296 5830efce522b
equal deleted inserted replaced
44294:234001d22ba6 44295:142d2a4cb69a
   168     (b'G', b'graph', None, _(b"show the revision DAG")),
   168     (b'G', b'graph', None, _(b"show the revision DAG")),
   169 ] + templateopts
   169 ] + templateopts
   170 
   170 
   171 diffopts = [
   171 diffopts = [
   172     (b'a', b'text', None, _(b'treat all files as text')),
   172     (b'a', b'text', None, _(b'treat all files as text')),
   173     (b'g', b'git', None, _(b'use git extended diff format')),
   173     (b'g', b'git', None, _(b'use git extended diff format (DEFAULT: diff.git)')),
   174     (b'', b'binary', None, _(b'generate binary diffs in git mode (default)')),
   174     (b'', b'binary', None, _(b'generate binary diffs in git mode (default)')),
   175     (b'', b'nodates', None, _(b'omit dates from diff headers')),
   175     (b'', b'nodates', None, _(b'omit dates from diff headers')),
   176 ]
   176 ]
   177 
   177 
   178 diffwsopts = [
   178 diffwsopts = [