简体   繁体   中英

When I clone from github remote repo, which branch of remote repo is cloned to local repo?

I cloned from a certain remote github repo.

After that, I did not change anything to my local repository, but when I type git status, there shows some modified( or deleted) files.

Here are my questions.

  1. When I clone from github remote repo, which branch among remote github repo that my local repository will get or sync to?

  2. If I want to clone certain branch of remote repo to my local repo, how should I do?

Thanks

With Git (as with any DVCS) you have a whole standalone copy of the full repository locally. (Except if you do a shallow clone, or change the refspec so that only specific branches are cloned).

git clone creates a local branch for the remote branch that is the default branch for that repository ( HEAD in the remote points to it) which most often is master as it is the conventional default.

If you don't want the default branch created, you can tell git clone via parameter which branch to create locally after cloning.

Either way you can at any time create local branches from any remote branch you want and name them however you want. All remote branches are in your local repository as remote tracking branches, you just do not have local branches for them by default.

That there are deleted files shown directly after a clone is nearly impossible as to my knowledge. Modified files could possibly be shown if you clone to Windows and there is some line-ending mangling going on. But deleted files should not be possible without you deleting the files.

It could be that there are filemode differences. This sometimes happens when files are stored in the remote from a Linux type of file system and cloned into a Windows file system.

There is some discussion of handling file mode differences here: https://stackoverflow.com/a/1580644/7275012

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM