On Wed, Mar 30, 2011 at 11:31 AM, Michael Schubert <mschub@xxxxxxxxxxxxx> wrote: >> + Â Â Â curr_branch=$(git symbolic-ref -q HEAD) >> + Â Â Â curr_branch="${cur_branch#refs/heads/}" > Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ^^^ Ah! How did this pass the test suite... Anyway, looks like Junio applied this patch to maint already :-( Sorry. Junio, please apply this (probably word wrapped since this is gmail interface) and drop your trust level of me by a few points. diff --git a/git-parse-remote.sh b/git-parse-remote.sh index 9168879..ea093d2 100644 --- a/git-parse-remote.sh +++ b/git-parse-remote.sh @@ -6,7 +6,7 @@ GIT_DIR=$(git rev-parse -q --git-dir) || :; get_default_remote () { curr_branch=$(git symbolic-ref -q HEAD) - curr_branch="${cur_branch#refs/heads/}" + curr_branch="${curr_branch#refs/heads/}" origin=$(git config --get "branch.$curr_branch.remote") echo ${origin:-origin} } -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html