···170170171171You'll see something like:
172172173173-```
173173+```bash
174174origin git@github.com:username/my-project (fetch)
175175origin git@github.com:username/my-project (push)
176176```
···189189190190You should now see:
191191192192-```
192192+```bash
193193origin git@tangled.org:user.tngl.sh/my-project (fetch)
194194origin git@tangled.org:user.tngl.sh/my-project (push)
195195```
···209209If you want to maintain your repository on multiple forges
210210simultaneously, for example, keeping your primary repository
211211on GitHub while mirroring to Tangled for backup or
212212-redundancy, you can do so by adding multiple remotes.
212212+redundancy, you can do so by adding [multiple remotes](https://git-scm.com/docs/git-push#_remotes).
213213214214You can configure your local repository to push to both
215215Tangled and, say, GitHub. You may already have the following
216216setup:
217217218218-```
218218+```bash
219219$ git remote -v
220220-origin git@github.com:username/my-project (fetch)
221221-origin git@github.com:username/my-project (push)
220220+origin git@github.com:username/my-project.git (fetch)
221221+origin git@github.com:username/my-project.git (push)
222222```
223223224224Now add Tangled as an additional push URL to the same
···229229```
230230231231You also need to re-add the original URL as a push
232232-destination (Git replaces the push URL when you use `--add`
233233-the first time):
232232+destination (Git will now use the original URL to fetch only):
234233235234```bash
236236-git remote set-url --add --push origin git@github.com:username/my-project
235235+git remote set-url --add --push origin git@github.com:username/my-project.git
237236```
238237239238Verify your configuration:
240239241241-```
240240+```bash
242241$ git remote -v
243243-origin git@github.com:username/repo (fetch)
244244-origin git@tangled.org:username/my-project (push)
245245-origin git@github.com:username/repo (push)
242242+origin git@github.com:username/my-project.git (fetch)
243243+origin git@tangled.org:user.tngl.sh/my-project (push)
244244+origin git@github.com:username/my-project.git (push)
246245```
247246248247Notice that there's one fetch URL (the primary remote) and
···267266you can maintain separate remotes:
268267269268```bash
270270-git remote add github git@github.com:username/my-project
271271-git remote add tangled git@tangled.org:username/my-project
269269+git remote add github git@github.com:username/my-project.git
270270+git remote add tangled git@tangled.org:user.tngl.sh/my-project
272271```
273272274273Then push to each explicitly: