3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ブランチ・マージ

Posted at

ブランチの新規作成

git branch <ブランチ名>
ブランチを新規作成

git branch
ブランチ一覧を表示

ブランチの切り替え

git checkout <ブランチ名>
ブランチの切り替え

マージ

作業ブランチから main ブランチに変更をマージ(merge)する方法を示します。

  1. ローカルリポジトリで main ブランチに切り替えます

    git checkout main
    main ブランチを最新の状態に更新します。これにより、main ブランチに他の変更が取り込まれているかもしれません:

  2. プルする

    git pull origin main
    main ブランチを最新の状態に更新します。

  3. マージする

    git merge <作業ブランチ名>
    作業ブランチを main ブランチにマージします。
    マージコミットメッセージが生成されます:
    このコマンドは、作業ブランチの変更を main ブランチに取り込みます。

  4. 変更をコミットし、main ブランチにプッシュします

    git commit -m "<コミットメッセージ>"
    git push origin main
    

    これで、作業ブランチの変更が main ブランチに取り込まれます。

この手順を実行することで、main ブランチに最新の変更が反映されます。

ブランチの名前の変更

git branch -m 前の名前 新しい名前

ブランチの削除

git branch -d <ブランチ名>

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?