git clone ssh://egit/TECLIM/ClimateData.git [as suggested by François],
however I am not able to do it, even though my public key is already registered in gogs.
Would you have some suggestion to go around the problem:
Thanks
Hi @pbarriat,
I have tried to clone the ec-earth project by doing (on Zenobe):
```
git clone ssh://git@www.climate.be:3022/TECLIM/ClimateData.git
```
and
```
git clone ssh://egit/TECLIM/ClimateData.git [as suggested by François],
```
however I am not able to do it, even though my public key is already registered in gogs.
Would you have some suggestion to go around the problem:
Thanks
Have you configured your ssh config file on zenobe ?
To use the egit alias, you need in your ~/.ssh/config file:
Host gwcism
User lponsoni
Hostname gwcism.cism.ucl.ac.be
Host *%gwcism
ProxyCommand ssh -W %h:%p gwcism
Host egit*
User git
Hostname www.climate.be
Port 3022
Proxycommand ssh -xaqW %h:%p gwcism
Hi @lponsoni
Have you configured your ssh config file on zenobe ?
To use the `egit` alias, you need in your `~/.ssh/config` file:
```bash
Host gwcism
User lponsoni
Hostname gwcism.cism.ucl.ac.be
Host *%gwcism
ProxyCommand ssh -W %h:%p gwcism
Host egit*
User git
Hostname www.climate.be
Port 3022
Proxycommand ssh -xaqW %h:%p gwcism
```
Hi @pbarriat,
I have tried to clone the ec-earth project by doing (on Zenobe):
and
however I am not able to do it, even though my public key is already registered in gogs.
Would you have some suggestion to go around the problem:
Thanks
Hi @lponsoni
Have you configured your ssh config file on zenobe ?
To use the
egit
alias, you need in your~/.ssh/config
file: