From: Stephen Haberman Date: Tue, 11 Nov 2008 23:08:16 +0000 (-0600) Subject: Fix trailing space. X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=be4fac0f00cf8f98173706cca15bd49056dfa804;p=git-central.git Fix trailing space. --- diff --git a/scripts/checkout b/scripts/checkout index 5f50c26..e326b38 100644 --- a/scripts/checkout +++ b/scripts/checkout @@ -3,7 +3,7 @@ branch_name=$1 # See if it already exists -git rev-parse --verify --quiet $branch_name >/dev/null +git rev-parse --verify --quiet $branch_name >/dev/null if [[ $? -eq 0 ]] ; then # Just checkout what they asked git checkout "$branch_name"