LoginSignup
0
0

More than 1 year has passed since last update.

Git ブランチの作成、リモートへの登録方法

Posted at

ブランチの作成

ブランチを以下コマンドで作成する

$ git branch <ブランチ名>

確認

$ git branch
  master
* tr_record

ブランチを切り替える場合

git checkout <変えたいブランチ名>

リモートへの登録

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

スクリーンショット 2022-11-25 14.23.33.png

ブランチが追加されている。
以上。

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