> For the complete documentation index, see [llms.txt](https://madeindonesia.gitbook.io/mi-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://madeindonesia.gitbook.io/mi-guide/gitlab.md).

# Gitlab

### Issue cannot comunication with private repo

#### Problem cannot git clone

When you run&#x20;

<pre class="language-bash"><code class="lang-bash"><strong>git clone https://gitlab.com/dicky_madeindonesia/hello-elementor-mi.git
</strong></code></pre>

```bash
dickysaputra@Dickys-MacBook-Pro themes % git clone git@gitlab.com:dicky_madeindonesia/hello-elementor-mi.git
Cloning into 'hello-elementor-mi'...
git@gitlab.com: Permission denied (publickey).
fatal: Could not read from remote repository.

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

May you can solve with this command

```bash
git clone https://usernamegitlab@gitlab.com/usernamegitlab/namerepo.git

// Example
git clone https://dicky_madeindonesia@gitlab.com/dicky_madeindonesia/hello-elementor-mi.git
```
