marbl / meryl

A genomic k-mer counter (and sequence utility) with nice features.
115 stars 13 forks source link

fatal: clone of 'git@github.com:marbl/meryl-utility' into submodule path 'canu/src/utility' failed #15

Closed linsalrob closed 4 years ago

linsalrob commented 4 years ago

The meryl and meryl-utility submodule URLs contain SSH URLs for the submodules:

e.g in .gitmodules

I think these should be https links instead.

brianwalenz commented 4 years ago

For now, can you try the suggestion at http://jr0cket.co.uk/2016/05/ssh-or-https-that-is-the-github-question.html - near the bottom of the page:

Using SSH when its blocked by the network

SSH can be tunneled over HTTPS if the network you are on blocks the SSH port. Simply edit your ~/.ssh/config file and add this section:

Host github.com
  Hostname ssh.github.com
  Port 443

Now every time you use SSH to connect to Github it will use the HTTPS port (443).
brianwalenz commented 4 years ago

Should be fixed. I have no easy way to test though.