Hi, git-http-push now accept : git-http-push http://doo.com/git/bar.git/ master:refs/heads/pr/my_passwd instead of : git-http-push http://doo.com/git/bar.git/ master:pr/my_passwd And old syntax doesn't work anymore (unable to create remote branches). Here is a patch : diff -Nur cogito-0.17.2/cg-push cogito-0.17.2-mine/cg-push --- cogito-0.17.2/cg-push 2006-04-08 03:02:49.000000000 +0200 +++ cogito-0.17.2-mine/cg-push 2006-04-24 11:33:34.748845600 +0200 @@ -69,8 +69,7 @@ sprembranch=":refs/heads/$rembranch" if [ "${uri#http://}" != "$uri" -o "${uri#https://}" != "$uri" ]; then - # git-http-push doesn't like $sprembranch - git-http-push "$uri/" "$locbranch:$rembranch" "${tags[@]}" + git-http-push "$uri/" "$locbranch$sprembranch" "${tags[@]}" elif [ "${uri#git+ssh://}" != "$uri" ]; then send_pack_update "$name" "$(echo "$uri" | sed 's#^git+ssh://\([^/]*\)\(/.*\)$#\1:\2#')" "$locbranch$sprembranch" "${tags[@]}" elif [ "${uri#rsync://}" != "$uri" ]; then -- Beber #e.fr@freenode - : 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