Home  >  Article  >  Development Tools  >  What does origin mean in git?

What does origin mean in git?

WBOY
WBOYOriginal
2022-01-07 15:36:5816501browse

In git, origin means "remote warehouse", which is the alias of the remote warehouse link. When cloning a code library hosted on Github, git creates a label pointing to the remote code library by default. , origin points to the version of the local code base hosted on Github.

What does origin mean in git?

The operating environment of this article: Windows 10 system, Git version 2.30.0, Dell G3 computer.

What does origin mean in git

Your code base (repository) can be stored in your computer, and you can also The code base is hosted on Github's server.

By default, origin points to the version of your local code base hosted on Github.

We assume that you first created a Repository on github, called repository. Assume that your Github ID is user1. At this time, the link to your code library is

https://github.com/user1/repository

If you are in the terminal Enter

git clone https://github.com/user1/repository

, then git will make a local copy of the code library hosted on github

At this time, you cd to the repository

and enter

git remote -v

You will see the console output

origin https://github.com/user1/repository.git (fetch)
origin https://github.com/user1/repository.git (push)

That is to say, git creates an origin pointing to the remote code base for you by default (because you cloned it from this address)

Suppose now that a user user2 has forked your repository, then his code base link will look like this

https://github.com/user2/repository

If he also clones this, and then enters

in his console
git remote -v

What he will see is

origin https://github.com/user2/repository.git (fetch)
origin https://github.com/user2/repository.git (push)

The origin pointed to is user2’s remote code library

At this time, if user2 wants to add a remote code that points to you library, he can enter

git remote add upstream https://github.com/user1/repository.git

in the console and then enter git remote -v

The output result will become

origin https://github.com/user2/repository.git (fetch)
origin https://github.com/user2/repository.git (push)
upstream https://github.com/user1/repository.git (push)
upstream https://github.com/user1/repository.git (push)

Added upstream pointing to the user1 code library , which is the previous naming of the pointed location.

To summarize, as the name suggests, origin is a name. When you clone a code library hosted on Github, git creates a label for you by default that points to the remote code library.

Recommended learning: "Git Tutorial"

The above is the detailed content of What does origin mean in git?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn