How do I clone a single branch in Git?

后端 未结 21 2415
再見小時候
再見小時候 2020-11-22 00:09

I have a local Git repository called \'skeleton\' that I use for storing project skeletons. It has a few branches, for different kinds of projects:

casey@aga         


        
相关标签:
21条回答
  • 2020-11-22 00:49

    For cloning a specific branch you can do :

    git clone --branch yourBranchName git@yourRepository.git
    
    0 讨论(0)
  • 2020-11-22 00:51

    For the newbies like me, just run the code below

    git clone https://gitlab.com/repo/repo.git --branch <name of branch> --single-branch
    
    0 讨论(0)
  • 2020-11-22 00:55

    you can use this command to git single branch and rename the folder if you want to keep branched stand alone

    git clone -b [branch-name] --single-branch [url]  [folder_name]
    

    example

    git clone -b mybranch --single-branch git://github/repository.git  project_mybranch
    
    0 讨论(0)
提交回复
热议问题