githubで新しいブランチを作成する方法
現在のブランチ一覧を確認
$ git branch
ブランチを作成
$ git branch hoge
作成したブランチに移動
$ git branch hoge
ブランチを作成&作成したブランチに移動
$git checkout -b hoge2
ブランチをマージさせる
$ git merge hoge2
Go to list of users who liked
More than 5 years have passed since last update.
githubで新しいブランチを作成する方法
現在のブランチ一覧を確認
$ git branch
ブランチを作成
$ git branch hoge
作成したブランチに移動
$ git branch hoge
ブランチを作成&作成したブランチに移動
$git checkout -b hoge2
ブランチをマージさせる
$ git merge hoge2
Register as a new user and use Qiita more conveniently
Go to list of users who liked