Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 564 Bytes

remotes.md

File metadata and controls

26 lines (15 loc) · 564 Bytes

Remotes

No meme sorry

A remote URL is Git's fancy way of saying "the place where your code is stored"

That URL could be your repository on Gitub, or another user's fork, or even on a completely different server.

Commands

To create remote repositories

  • git remote add <RemoteName> <RemoteURL>

To change remote's URL

  • git remote set-url <RemoteName> <RemoteURL>

Resources


next