“Git Clone Branch” Ответ

Git Clone Branch

git clone --single-branch --branch <branchname> <remote-repo>
Concerned Crane

git клон из конкретной ветви

git clone -b branchName repoUrl
Snippets

Github Clone Branch

git clone -b <branchname> <remote-repo-url>
Calm Camel

Как клонировать конкретную ветвь в git

git clone -b <your_branchname> <your_git-remote-repo>
Shy Skipper

специфичная ветвь клона GIT

git clone --single-branch --branch <branchname> <remote-repo>

# eg
git clone -b opencv-2.4 --single-branch https://github.com/Itseez/opencv.git
crêpper

клон ветвь в git

git clone -b <branchname> --single-branch <remote-repo-url>

Ответы похожие на “Git Clone Branch”

Вопросы похожие на “Git Clone Branch”

Больше похожих ответов на “Git Clone Branch” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования