# Add Remote Repositories in Git

#### Add Remote Repositories in Git <a href="#heading-how-to-add-remote-repositories-in-git" id="heading-how-to-add-remote-repositories-in-git"></a>

To explicitly add a new remote repository, use `git remote add <shortname> <url>`:

```bash
$ git remote add example https://github.com/example/example.git
```

Here, we've added a remote named `example` with the specified URL. This allows us to reference this remote repository using the shortname `example` in our commands.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://drvicki.gitbook.io/learn-git-fundamanetals/work-with-remotes-in-git/add-remote-repositories-in-git.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
