From: Eric Wong Date: Thu, 13 Dec 2007 16:27:34 +0000 (-0800) Subject: git-svn: unlink internal index files after operations X-Git-Tag: v1.5.4-rc1~73 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/3157dd9e89a71e80673d0bc21b5c0630f3b1fe68 git-svn: unlink internal index files after operations Being git, we can generate these very quickly on the fly as needed, so there's no point in wasting space for these things for large projects. Signed-off-by: Eric Wong Signed-off-by: Junio C Hamano --- diff --git a/git-svn.perl b/git-svn.perl index 34c5e3d2e4..3aa7f8cb40 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -396,6 +396,7 @@ sub cmd_set_tree { } $gs->set_tree($_) foreach @revs; print "Done committing ",scalar @revs," revisions to SVN\n"; + unlink $gs->{index}; } sub cmd_dcommit { @@ -514,6 +515,7 @@ sub cmd_dcommit { $last_rev = $cmt_rev; } } + unlink $gs->{index}; } sub cmd_find_rev { @@ -1374,6 +1376,7 @@ sub fetch_all { ($base, $head) = parse_revision_argument($base, $head); $ra->gs_fetch_loop_common($base, $head, \@gs, \@globs); + unlink $_->{index} foreach @gs; } sub read_all_remotes {