Seems like your git repo is just misconfigured. $ go get does not actually
download things, it calls out git or other VCS to do that. I'm also using
gitlab for private repositories and have no issues with go get.

Example https (wrong) config:

==== jnml@4670:~/src/modernc.org/ql> cat .git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = https://gitlab.com/cznic/ql
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
==== jnml@4670:~/src/modernc.org/ql>


Make sure the url item has the right (git) protocol. Example correct config:

==== jnml@4670:~/src/modernc.org/cc> cat .git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = g...@gitlab.com:cznic/cc
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
[branch "gccgo"]
remote = origin
merge = refs/heads/gccgo
[branch "feb"]
remote = origin
merge = refs/heads/feb
==== jnml@4670:~/src/modernc.org/cc>

Above assumes you have your keys correctly registered at gitlab.

-----------------

To someone owning a github account: Please forward to the issue tracker,
while there's still no bot for that, thanks in advance.

@Ian Lance Taylor: Last time we've discussed the forwarding problem, the
question was, rightfully, raised about identity checking for moderation.
What about using the identities from golang-nuts? They are already
moderated. IIRC, first time posters are manually enabled per case. So if
some email is already approved (opt. long enough) for the golang-nuts
mailing list it can be probably considered a usable, "safe" identity, can't
it? (Or check the email address against AUTHORS/CONTRIBUTORS?) And then the
bot can just automatically forward from this mailing list to the issue
tracker. That will also provide in effect and for free a "subscribe" to the
issue functionality, it seems.

Thoughts?

-- 

-j

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to