Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-08-26 20:52:25 +0400
committerJunio C Hamano <junkio@cox.net>2006-08-27 04:54:15 +0400
commit5f641ccc69da1e0f2e3953f615cf592e83ec721b (patch)
tree880dfc73e019ef0897223a6be151b43557481780 /git-svn.perl
parent83572c1a914d3f7a8dd66d954c11bbc665b7b923 (diff)
git-svn: stop repeatedly reusing the first commit message with dcommit
Excessive use of global variables got me into trouble. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-xgit-svn.perl1
1 files changed, 1 insertions, 0 deletions
diff --git a/git-svn.perl b/git-svn.perl
index 9382a15044..0290850b66 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -819,6 +819,7 @@ sub commit_diff {
} else {
$ed->close_edit;
}
+ $_message = $_file = undef;
}
########################### utility functions #########################