# Remote

Remote

```bash
git remote
```

To check the configuration of the remote server, run the git remote command.

* Verbose output

```bash
git remote -v
```

* Add Remote Server

```bash
git remote add github-url
Ex: git remote add https://github.com/demo/demo.git
```

* Remove Connection

```bash
git remote rm
```

* Rename Remote Server

```bash
git remote rename
```

* Change Remote

```bash
git remote set-url
```

* Fetch Remote Server

```bash
git remote fetch
```
