Problem Statement
What is a remote in Git and why do most repositories have one named 'origin'?
Explanation
A remote is a named reference to another copy of the repository, typically hosted on a server. 'origin' is the default name Git assigns when you clone, pointing back to the source repository. It lets you fetch, pull, and push changes for collaboration.
Practice Sets
This question appears in the following practice sets:
