OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:changeLogs
(Results
1 - 2
of
2
) sorted by null
/external/webkit/WebKitTools/Scripts/
commit-log-editor
84
my @
changeLogs
= ();
105
push @
changeLogs
, makeFilePathRelative($1) if $inChangesToBeCommitted && (/^M....(.*ChangeLog)\r?\n?$/ || /^#\tmodified: (.*ChangeLog)/) && !/-ChangeLog/;
115
if ($regenerateLog && $existingLog && scalar(@
changeLogs
) > 0) {
116
print "Existing log message detected, Use 'r' to regenerate log message from
ChangeLogs
, or any other key to keep the existing message.\n";
131
for my $changeLog (@
changeLogs
) {
resolve-ChangeLogs
86
print STDERR "ERROR: Files listed on command-line that are not
ChangeLogs
.\n";
296
my @
changeLogs
= grep { defined $_ } map { findChangeLog($_) } @changedFiles;
297
die "No changed ChangeLog files in $revisionRange" if scalar(@
changeLogs
) < 1;
299
system("$GIT filter-branch --tree-filter 'PREVIOUS_COMMIT=\`$GIT rev-parse \$GIT_COMMIT^\` && MAPPED_PREVIOUS_COMMIT=\`map \$PREVIOUS_COMMIT\` \"$0\" -f \"" . join('" "', @
changeLogs
) . "\"' $revisionRange");
Completed in 443 milliseconds