Lines Matching refs:GIT
32 # Git support added by Adam Roben <aroben@apple.com>
33 # --git-index flag added by Joe Mason <joe.mason@torchmobile.com>
117 "git-commit:s" => \$gitCommit,
118 "git-index" => \$gitIndex,
119 "git-reviewer:s" => \$gitReviewer,
125 print STDERR basename($0) . " [--bug] [-d|--diff] [-h|--help] [-o|--open] [--git-commit=<committish>] [--git-reviewer=<name>] [svndir1 [svndir2 ...]]\n";
128 print STDERR " --git-commit Populate the ChangeLogs from the specified git commit\n";
129 print STDERR " --git-index Populate the ChangeLogs from the git index only\n";
130 print STDERR " --git-reviewer When populating the ChangeLogs from a git commit claim that the spcified name reviewed the change.\n";
131 print STDERR " This option is useful when the git commit lacks a Signed-Off-By: line\n";
139 die "--git-commit and --git-index are incompatible." if ($gitIndex && $gitCommit);
149 my $GIT = "git";
452 # Silently allow --git-commit to win, we could warn if $nameFromArgs is defined.
453 return `$GIT log --max-count=1 --pretty=\"format:%an\" \"$gitCommit\"` if $gitCommit;
461 # Silently allow --git-commit to win, we could warn if $emailAddressFromArgs is defined.
462 return `$GIT log --max-count=1 --pretty=\"format:%ae\" \"$gitCommit\"` if $gitCommit;
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;
1404 $propertyStatus = " "; # git doesn't have properties
1412 print; # error output from git diff
1486 my %git = (
1492 return $git{$status} if $isGit;
1509 my %git = %svn;
1510 $git{"A"} = " Added.";
1511 $git{"C"} = " Copied from \%s.";
1512 $git{"R"} = " Renamed from \%s.";
1516 $description = sprintf($git{$status}, $original) if $isGit && exists $git{$status};
1601 open(GIT, "-|", $GIT, @args, $commit) || die;
1602 $gitLog = <GIT>;
1603 close(GIT);