Gimp git clone not working?

When I do git clone git://gitlab.gnome.org/gimp

I get the following error

Cloning into 'gimp'...
fatal: unable to connect to gitlab.gnome.org:
gitlab.gnome.org[0: 209.132.180.181]: errno=No route to host

Why?

SSH:

git clone git@gitlab.gnome.org:GNOME/gimp.git

Use HTTPS if you don’t have SSH set up:

git clone https://gitlab.gnome.org/GNOME/gimp.git
1 Like

thanks. But it still does not work:

git@gitlab.gnome.org: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Why do we need credentials to clone gimp from git?

git clone GNOME / GIMP · GitLab

2 Likes

Thanks! It works now!

Thanks!