特定のブランチを複製したい。 master
ブランチをダウンロードしたくありません。
プロジェクト全体のクローンを作成してからvalidations
ブランチに切り替えるにはどうすればよいですか?
次の方法で、1つのブランチをクローンできます(プロジェクト全体を誤ってクローンすることなく)。
git clone <url> --branch <branch> --single-branch [<folder>]
または、ここで新しい質問に答えようとします...)、プロジェクト全体のクローンを作成できます
git clone <url>
ディレクトリをフォルダに変更し、マスターから新しいブランチを作成します
git checkout -b validations
git clone -b branchName remote_repo_url
例えば git clone -b develop https://github.com/SundeepK/CompactCalendarView.git
次のように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が機能します。
別のブランチをプルするには、2つの簡単な手順に従う必要があります。
次のコマンドを使用してみてください。
git checkout -b <new-branch-name>
git pull Origin <branch-to-pull>
これで、すべての内容が<new-branch-name>
ブランチ