libsnark icon indicating copy to clipboard operation
libsnark copied to clipboard

Update .gitmodules to use https urls

Open dark64 opened this issue 3 years ago • 3 comments

Recent changes in the Git protocol security on GitHub https://github.blog/2021-09-01-improving-git-protocol-security-github/ broke our build script that clones libsnark. I found that some submodules referenced in .gitmodules use the unencrypted git protocol and some use https, which produces an error The unauthenticated git protocol on port 9418 is no longer supported if the repository is cloned using the https protocol.

dark64 avatar Jan 12 '22 09:01 dark64

Ah yes good catch @dark64 thanks for this. I actually updated it on https://github.com/clearmatics/libsnark/pull/37 but forgot to propagate here...

AntoineRondelet avatar Jan 12 '22 12:01 AntoineRondelet

@ValarDragon is there any plan to release a new version of libsnark at some point in the near future? If so, I think this PR should probably target staging for now and will hit master on the new release.

AntoineRondelet avatar Jan 12 '22 12:01 AntoineRondelet

we can also use git to change protocol to https using below command

git config --global url."https://".insteadOf git://

mkumar-cognam avatar Jul 13 '23 06:07 mkumar-cognam