Hi, a repo I was trying to clone contained a tag that somehow had a colon in its name, which is illegal. The attached patch makes git-fetch ignore these tags rather than barf. Simon diff --git a/git-fetch.sh b/git-fetch.sh index 125bcea..6d930b2 100755 --- a/git-fetch.sh +++ b/git-fetch.sh @@ -191,6 +191,7 @@ then taglist=$(git-ls-remote --tags "$remote" | sed -e ' /\^/d + /:/d s/^[^ ]* // s/.*/.&:&/') if test "$#" -gt 1 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
This archive was generated by hypermail 2.1.8 : 2006-01-05 00:15:09 EST