10 · Version Control
Remote / origin
The shared, hosted copy
A “remote” is a copy of the repo hosted elsewhere (usually GitHub) that a team shares; “origin” is the default name for the one you cloned from. Push and pull move commits to and from it.
Concrete example
“git push origin main” sends your commits to the shared copy everyone works against.