From 530333cfe851b68a3635ee5bcfe707799dab9b83 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 25 Mar 2013 10:48:24 -0700 Subject: [PATCH] merge-one-file: remove stale comment The "funny filename" comment was from b539c5e8fbd3 (git-merge-one: new merge world order., 2005-12-07) where the removed code just before that new comment ended with: merge "$4" "$orig" "$src2" (yes, we used to use "merge" program from the RCS suite). The comment refers to one of the bad side effect the old code used to have and warns against such a practice, i.e. it was talking about the code that no longer existed. Signed-off-by: Junio C Hamano --- git-merge-one-file.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/git-merge-one-file.sh b/git-merge-one-file.sh index 0f164e54c1..57fad733ba 100755 --- a/git-merge-one-file.sh +++ b/git-merge-one-file.sh @@ -118,8 +118,6 @@ case "${1:-.}${2:-.}${3:-.}" in ;; esac - # Be careful for funny filename such as "-L" in "$4", which - # would confuse "merge" greatly. git merge-file "$src1" "$orig" "$src2" ret=$? msg= -- 2.11.4.GIT