From ff1f4479597cb031e6a4c5c610cd9ebfbba47ed5 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 7 Apr 2010 23:14:00 +0200 Subject: [PATCH] git-am: fix absolute path logic on Windows This fixes t4150 on msysGit. Signed-off-by: Johannes Schindelin --- git-am.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-am.sh b/git-am.sh index e7f008c7ba..6b9f76a27d 100755 --- a/git-am.sh +++ b/git-am.sh @@ -445,7 +445,7 @@ else first= } case "$arg" in - /*) + /*|?:*) set "$@" "$arg" ;; *) set "$@" "$prefix$arg" ;; -- 2.11.4.GIT