markdown Git一次克隆所有分支

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Git一次克隆所有分支相关的知识,希望对你有一定的参考价值。

## After cloning the repo, run:

`cd myproject`

`git branch -a`

## You'll see this:
* master (_current branch_)
* remotes/origin/HEAD
* remotes/origin/master
* remotes/origin/v1.0-stable
* remotes/origin/experimental

## If you want to work on remote branch, you'll need to create a local tracking branch:
`git checkout -b experimental origin/experimental`

## Verify whether you are in the desired branch by the following command:
`git branch`

## The output will like this:

* experimental (_current branch_)
* master
* some branch2
* some branch3 

以上是关于markdown Git一次克隆所有分支的主要内容,如果未能解决你的问题,请参考以下文章

git 笔记

sh 使用Git克隆所有远程分支 - 一个衬管bash命令

记一次项目中遇到的git问题

git克隆远程分支

git常用指令

git如何clone所有的远程分支