aboutsummaryrefslogblamecommitdiffstats
path: root/create-topic-branches
blob: 368711e6c6dcc0b160a839c4eaf8b6bb21383461 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                      
#!/usr/bin/perl -w
use strict;

my $range = "";
$range = shift if @ARGV;

foreach (`git log --oneline --first-parent $range`) {
    next unless /^([\da-f]+) Merge branch '([^\']*)'/;
    print "git branch $2 $1^2\n";
}