diff options
author | Deskin Miller <deskinm@umich.edu> | 2008-10-31 05:10:25 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-10-31 09:22:48 +0100 |
commit | e855bfc0404d3344787541c1bdaa1e8d44398eb3 (patch) | |
tree | a20c7e738d1d6d33a0dc50e67fa3bfe89edbe23f /git-svn.perl | |
parent | Documentation: clarify information about 'ident' attribute (diff) | |
download | git-e855bfc0404d3344787541c1bdaa1e8d44398eb3.tar.xz git-e855bfc0404d3344787541c1bdaa1e8d44398eb3.zip |
git-svn: change dashed git-commit-tree to git commit-tree
Signed-off-by: Deskin Miller <deskinm@umich.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-x | git-svn.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svn.perl b/git-svn.perl index 2e68c68d49..56238dad08 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -2202,7 +2202,7 @@ sub do_git_commit { } die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o; - my @exec = ('git-commit-tree', $tree); + my @exec = ('git', 'commit-tree', $tree); foreach ($self->get_commit_parents($log_entry)) { push @exec, '-p', $_; } |