LoginSignup
2
0

More than 3 years have passed since last update.

github関連

Posted at

githubで新しいブランチを作成する方法

現在のブランチ一覧を確認

 $ git branch

ブランチを作成

$ git branch hoge

作成したブランチに移動
$ git branch hoge

ブランチを作成&作成したブランチに移動
$git checkout -b hoge2

ブランチをマージさせる
$ git merge hoge2

2
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
2
0