summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5ff6aae)
raw | patch | inline | side by side (parent: 5ff6aae)
author | Eric Wong <normalperson@yhbt.net> | |
Thu, 13 Dec 2007 16:27:34 +0000 (08:27 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Thu, 13 Dec 2007 17:54:45 +0000 (09:54 -0800) |
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 <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
needed, so there's no point in wasting space for these things
for large projects.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-svn.perl | patch | blob | history |
diff --git a/git-svn.perl b/git-svn.perl
index 34c5e3d2e4246aeed42d1be89f86c3c20839d509..3aa7f8cb408402305df316d2ff90b69a3267c5a0 100755 (executable)
--- a/git-svn.perl
+++ b/git-svn.perl
}
$gs->set_tree($_) foreach @revs;
print "Done committing ",scalar @revs," revisions to SVN\n";
+ unlink $gs->{index};
}
sub cmd_dcommit {
$last_rev = $cmt_rev;
}
}
+ unlink $gs->{index};
}
sub cmd_find_rev {
($base, $head) = parse_revision_argument($base, $head);
$ra->gs_fetch_loop_common($base, $head, \@gs, \@globs);
+ unlink $_->{index} foreach @gs;
}
sub read_all_remotes {