リモートのにあるmasterブランチ以外のブランチをおとしてくる方法です。 masterブランチをclone †$ git clone https://github.com/masatomix/git-flow-sample.git Cloning into 'hello'... remote: Counting objects: 3, done. remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 Unpacking objects: 100% (3/3), done. Checking connectivity... done. $ cd hello $ git branch * master masterしか見えない $ git branch -r origin/HEAD -> origin/master origin/develop origin/master 名前が確認できたので developブランチをcheckout †$ git checkout -b develop origin/develop もしくは $ git checkout -t origin/develop で、 Branch develop set up to track remote branch develop from origin. Switched to a new branch 'develop' $ git branch * develop master リモートのdevelopブランチが見られるようになりました。 このブランチdevelopはリモートのブランチからbranchしているので、 $ git branch -vv develop bbf5c22 [origin/develop] xxx branch -vv コマンドで、ブランチしたリモートブランチが紐付いていることが確認出来ますね。 この記事は 現在のアクセス:1949 |