andersonfreitas / opengl-boilerplate

A cross-platform boilerplate project for OpenGL using GLFW and GLEW in C++
55 stars 16 forks source link

Using https instead of git protocol for modules #3

Closed nigels-com closed 8 years ago

nigels-com commented 8 years ago

I happen to have a stale SSH keypair that github gets upset about... So I think HTTPS is more robust for fetch/clone, than git protocol.

$ git clone git@github.com:andersonfreitas/opengl-boilerplate.git --recursive
Cloning into 'opengl-boilerplate'...
ERROR: We're doing an SSH key audit.
Reason: unverified due to lack of use
Please visit https://github.com/settings/ssh/audit/.....
to approve this key so we know it's safe.
Fingerprint: 66:0e:7d:5a:bf:63:d1:c0:62:e3:ab:4b:..:..:6f:c6
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
nigels-com commented 8 years ago

This does work for my somewhat broken setup:

$ git clone https://github.com/nigels-com/opengl-boilerplate.git --branch merge-https --recursive
Cloning into 'opengl-boilerplate'...
remote: Counting objects: 114, done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 114 (delta 0), reused 0 (delta 0), pack-reused 111
Receiving objects: 100% (114/114), 14.20 KiB | 0 bytes/s, done.
Resolving deltas: 100% (55/55), done.
Checking connectivity... done.
Submodule 'external/glew' (https://github.com/nigels-com/glew.git) registered for path 'external/glew'
Submodule 'external/glfw' (https://github.com/glfw/glfw.git) registered for path 'external/glfw'
Submodule 'external/glm' (https://github.com/g-truc/glm.git) registered for path 'external/glm'
Cloning into 'external/glew'...
remote: Counting objects: 6632, done.
remote: Compressing objects: 100% (37/37), done.
remote: Total 6632 (delta 20), reused 0 (delta 0), pack-reused 6595
Receiving objects: 100% (6632/6632), 1.80 MiB | 356.00 KiB/s, done.
Resolving deltas: 100% (4379/4379), done.
Checking connectivity... done.
Submodule path 'external/glew': checked out 'a6c3e7dad0d1ae34e8016cf086ba6109d6fb4e4a'
Cloning into 'external/glfw'...
...