LoginSignup
0
0

More than 1 year has passed since last update.

gitのブランチの作成とチェックアウト

Posted at

issue 53への対応をするという状況を仮定。

ブランチの作成と新しいブランチへの切り替えを同時に行うには、git checkout コマンドに -b スイッチをつけて実行します。

$ git checkout -b iss53
Switched to a new branch "iss53"

$ git branch iss53
$ git checkout iss53

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