Lines Matching refs:diff
3 #===- google-java-format-diff.py - google-java-format Diff Reformatter -----===#
13 google-java-format Diff Reformatter
16 This script reads input from a unified diff and reformats all the changed
20 git diff -U0 HEAD^ | google-java-format-diff.py -p1 -i
21 svn diff --diff-cmd=diff -x-U0 | google-java-format-diff.py -i
38 'Reformat changed lines in diff. Without -i '
39 'option just output the diff that would be '
42 help='apply edits to files instead of displaying a diff')
113 diff = difflib.unified_diff(code, formatted_code,
116 diff_string = string.join(diff, '')