OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gitBranch
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Tools/Scripts/
VCSUtils.pm
63
&
gitBranch
99
my $
gitBranch
;
236
sub
gitBranch
()
238
unless (defined $
gitBranch
) {
239
chomp($
gitBranch
= `git symbolic-ref -q HEAD`);
240
$
gitBranch
= "" if exitStatus($?);
241
$
gitBranch
=~ s#^refs/heads/##;
242
$
gitBranch
= "" if $
gitBranch
eq "master";
245
return $
gitBranch
;
[
all
...]
commit-log-editor
173
my $branch =
gitBranch
();
Completed in 25 milliseconds