What is “origin” in Git?
origin is an alias on your system for a particular remote repository. It’s not actually a property of that repository. By doing you’re saying to push to the origin repository. There’s no requirement to name the remote repository origin: in fact the same repository could have a different alias for another developer. Remotes are simply an alias that store the URL of repositories. You … Read more