Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は2つの枝を持っています。新しいものを作りたい。どのブランチからプルして開始するかを知るにはどうすればよいですか?
ありがとう!
と入力するだけgit branchで、現在チェックアウトしているコミットから分岐します。git checkout -bを使用して新しいブランチを作成し、すぐにチェックアウトする場合も同様です。
git branch
git checkout -b
または、開始点を指定することもできます。次の両方は、「foo」の現在の先端から始まるブランチ「bar」を作成します。
git branch bar foo git checkout foo -b bar