From 47c9739e5e02484de618ca70a592ecd25c05fd1a Mon Sep 17 00:00:00 2001 From: Christian Couder Date: Fri, 24 Apr 2009 08:29:01 +0200 Subject: [PATCH] am: simplify "sq" function by using "git rev-parse --sq-quote" Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- git-am.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/git-am.sh b/git-am.sh index 6d1848b6cc..578780be13 100755 --- a/git-am.sh +++ b/git-am.sh @@ -44,11 +44,7 @@ else fi sq () { - for sqarg - do - printf "%s" "$sqarg" | - sed -e 's/'\''/'\''\\'\'''\''/g' -e 's/.*/ '\''&'\''/' - done + git rev-parse --sq-quote "$@" } stop_here () { -- 2.11.4.GIT