gleam-lang / gleam-mode

🐙 Gleam support for Emacs
Apache License 2.0
77 stars 20 forks source link

Cant clone the repo #11

Closed ajstrand closed 2 years ago

ajstrand commented 2 years ago

I've set up gleam with vscode, so it works fine there.

But I wanted to try gleam with Emacs and got this error:

git clone --recurse-submodules git@github.com:gleam-lang/gleam-mode
Cloning into 'gleam-mode'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

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

Any idea why this happens?

One possible workaround would be to fork the repo.

Would you want help publishing the code to MELPA? Im new to emacs/gleam, but I'd be happy to help.

akirak commented 2 years ago

@ajstrand You tried to clone the repository via SSH. Did you upload your public key to GitHub? You could use the HTTPS url instead:

git clone --recurse-submodules https://github.com/gleam-lang/gleam-mode
J3RN commented 2 years ago

I believe @akirak is right on this one; sounds like a GitHub authentication issue and using HTTPS should work. Please reopen the issue if that doesn't work for you!