From 5f641ccc69da1e0f2e3953f615cf592e83ec721b Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 26 Aug 2006 09:52:25 -0700 Subject: [PATCH] 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 Signed-off-by: Junio C Hamano --- git-svn.perl | 1 + 1 file changed, 1 insertion(+) 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 ######################### -- 2.11.4.GIT