Lines Matching refs:DIFF
27 # and functions from a diff.
48 # Work around diff stupidity where deleting a function that starts
49 # with a comment makes diff think that the following function
52 # Work around diff stupidity where deleting an entire function and
53 # the blank lines before it makes diff think you've changed the
113 GetOptions("diff|d!" => \$spewDiff,
125 print STDERR basename($0) . " [--bug] [-d|--diff] [-h|--help] [-o|--open] [--git-commit=<committish>] [--git-reviewer=<name>] [svndir1 [svndir2 ...]]\n";
127 print STDERR " -d|--diff Spew diff to stdout when running\n";
180 # Use line numbers from the "after" side of each diff.
181 print STDERR " Reviewing diff to determine which lines changed.\n";
183 open DIFF, "-|", diffCommand(@changed_files) or die "The diff failed: $!.\n";
184 while (<DIFF>) {
195 close DIFF;
410 # Write out another diff.
412 print STDERR " Running diff to help you write the ChangeLog entries.\n";
414 open DIFF, "-|", createPatchCommand($changed_files_string) or die "The diff failed: $!.\n";
415 print <DIFF>;
416 close DIFF;
1230 $command = "$SVN diff --diff-cmd diff -x -N $pathsString";
1232 $command = "$GIT diff --no-ext-diff -U0 " . diffFromToString();
1248 $command = "$GIT diff -r --name-status -C -C -M " . diffFromToString();
1263 $command = "$GIT diff -C -C -M " . diffFromToString();
1273 return qr/^diff --git a\/.+ b\/(.+)$/ if $isGit;
1326 open DIFF, "$SVN diff '$file' |" or die;
1327 while (<DIFF>) {
1329 while (<DIFF>) {
1354 close DIFF;
1412 print; # error output from git diff