Skip to content

Commit b52ef1f

Browse files
committed
Remove unused -b option
1 parent 355c82a commit b52ef1f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/log2cl.pl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@
3232
# Parse options and build up "git log" command
3333
my @cmd = ( "git" );
3434
my %opts;
35-
getopts('b:mR:', \%opts);
36-
push(@cmd, "-b", $opts{"b"}) if exists $opts{"b"};
35+
getopts('mR:', \%opts);
3736
push(@cmd, "--git-dir", $opts{"R"}) if exists $opts{"R"};
3837
push(@cmd, "log", "--log-size", "--name-only", "--date=short", "--format=$format", @ARGV);
3938

0 commit comments

Comments
 (0)