web-dev-qa-db-ja.com

git bitbucketで特定のブランチをクローンする方法

特定のブランチを複製したい。 masterブランチをダウンロードしたくありません。

プロジェクト全体のクローンを作成してからvalidationsブランチに切り替えるにはどうすればよいですか?

19
ruby student

次の方法で、1つのブランチをクローンできます(プロジェクト全体を誤ってクローンすることなく)。

git clone <url> --branch <branch> --single-branch [<folder>]

または、ここで新しい質問に答えようとします...)、プロジェクト全体のクローンを作成できます

git clone <url> 

ディレクトリをフォルダに変更し、マスターから新しいブランチを作成します

git checkout -b validations
25
sfletche
git clone -b branchName remote_repo_url

例えば ​​git clone -b develop https://github.com/SundeepK/CompactCalendarView.git

11

次のようにgit cloneを使用します。

git clone -b specific/Branch --single-branch git://sub.domain.com/repo.git

そして、役立つリンクは

https://git-scm.com/docs/git-clone/1.7.1

また、「-single-branch」でエラーが発生した場合は、それを削除しました-bが機能します。

6
Vishu

別のブランチをプルするには、2つの簡単な手順に従う必要があります。

  1. 新しいブランチを作成する
  2. 必要な枝を引く

次のコマンドを使用してみてください。

git checkout -b <new-branch-name>

git pull Origin <branch-to-pull>

これで、すべての内容が<new-branch-name> ブランチ

5
Sourabh Dev