LoginSignup
0
0

More than 1 year has passed since last update.

Git ブランチ関係のコマンド

Posted at

ブランチを確認

git branch

ブランチを作成

git branch <ブランチ名>

ブランチを変更

git checkout <ブランチ名>

ブランチを作成して変更

git checkout -b <ブランチ名>

ローカルのブランチをリモートに作成

git push -u origin <ブランチ名>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0