diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-10-31 01:42:58 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-10-31 01:42:58 -0700 |
commit | 933bb3ae5e6c83288ec7c80c2282984f4927cb48 (patch) | |
tree | ddd8cba625475e53e370471f61ea0fcba2f64921 /git-svn.perl | |
parent | compat/cygwin.c: make runtime detection of lstat/stat lessor impact (diff) | |
parent | git-svn: change dashed git-commit-tree to git commit-tree (diff) | |
download | tgif-933bb3ae5e6c83288ec7c80c2282984f4927cb48.tar.xz |
Merge branch 'maint'
* maint:
git-svn: change dashed git-commit-tree to git commit-tree
Documentation: clarify information about 'ident' attribute
bash completion: add doubledash to "git show"
Use test-chmtime -v instead of perl in t5000 to get mtime of a file
Add --verbose|-v to test-chmtime
asciidoc: add minor workaround to add an empty line after code blocks
Plug a memleak in builtin-revert
Add file delete/create info when we overflow rename_limit
Install git-cvsserver in $(bindir)
Install git-shell in bindir, too
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 f90ddac908..5702b100f1 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -2267,7 +2267,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', $_; } |