GeoscienceAustralia / eqrm

Automatically exported from code.google.com/p/eqrm
Other
5 stars 4 forks source link

git clone failing on rhe-compute #101

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?

Please use labels and text to provide additional information.

Original issue reported on code.google.com by duncan.g...@gmail.com on 29 Oct 2012 at 11:24

GoogleCodeExporter commented 9 years ago
Not really a EQRM error, but it can catch people working on EQRM.
Here is the error;
XXX@rhe-compute1:/nas/mnh/georisk_models/earthquake/sandpits/duncan/dump$ git 
clone https://github.com/ga-rams/eqrm_test_simulations.git
Cloning into 'eqrm_test_simulations'...
error: SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify 
failed while accessing 
https://github.com/ga-rams/eqrm_test_simulations.git/info/refs?service=git-uploa
d-pack
fatal: HTTP request failed

Original comment by duncan.g...@gmail.com on 29 Oct 2012 at 11:26

GoogleCodeExporter commented 9 years ago
[Cut and paste from an email from David]I think that this is a problem with 
https and the GA firewall rather than with git. You can get around this by 
using ssh to communicate with git. Follow the instructions at: 
https://help.github.com/articles/generating-ssh-keys

Also note that when setting up your origin that you will need to use the shh 
address and not https (i.e. use git@github.com:ga-rams/WA_Impact.git and not 
https://github.com/ga-rams/WA_Impact.git). If you have already setup the origin 
using https you can change it as follows: 

git config remote.origin.url https://github.com/ga-rams/WA_Impact.git

Hope this helps

David

This works;
git clone git@github.com:ga-rams/eqrm_test_simulations.git

Original comment by duncan.g...@gmail.com on 30 Oct 2012 at 1:15