chiark / gitweb /
Dgit.pm: Move make_commit (git-commit-tree wrapper) from gdr
[dgit.git] / git-debrebase
index 0be1af74f7a28b6fa8088df76db4a99d5adaf241..7dde1e746f846279d026e6119f6a9d84dbfba224 100755 (executable)
@@ -355,15 +355,6 @@ sub calculate_committer_authline () {
     return $&;
 }
 
-sub make_commit ($$) {
-    my ($parents, $message_paras) = @_;
-    my $tree = cmdoutput @git, qw(write-tree);
-    my @cmd = (@git, qw(commit-tree), $tree);
-    push @cmd, qw(-p), $_ foreach @$parents;
-    push @cmd, qw(-m), $_ foreach @$message_paras;
-    return cmdoutput @cmd;
-}
-
 our @snag_force_opts;
 sub snag ($$;@) {
     my ($tag,$msg) = @_; # ignores extra args, for benefit of keycommits