You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After pulling the problematic repo manually, I noticed that git failed pulling, so I added one of the git hacks, where it changes https://gitlab.com to git@gitlab.com. This seemed to have fixed the problem. I think go mod should have a more verbose output, or a verbose option where it logs, that git is failing to pull.
The text was updated successfully, but these errors were encountered:
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
export GO111MODULE=on
in the project foldergo mod download
The repo I am pulling off is a private one and due to having 2FA i can only properly pull using ssh, not https.
What did you expect to see?
I expected it to work and download all dependencies. Apparently git failed pulling, but does not log that into the output.
What did you see instead?
How did you fix it
After pulling the problematic repo manually, I noticed that git failed pulling, so I added one of the git hacks, where it changes
https://gitlab.com
togit@gitlab.com
. This seemed to have fixed the problem. I think go mod should have a more verbose output, or a verbose option where it logs, that git is failing to pull.The text was updated successfully, but these errors were encountered: