1
2

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 3 years have passed since last update.

Git ブランチの確認と作成と移動とmerge

Posted at

目的

  • Gitにおけるブランチ作成、ブランチ確認、ブランチ移動、mergeをまとめる
  • ※ほぼ自分用のメモになってしまっている

現在のブランチの確認

  • git管理されているディレクトリ内で下記コマンドを実行する。

    $ git branch
    
  • masterブランチのみの場合下記のように出力される。

    >* master
    
  • masterブランチとdevブランチがあり現在masterブランチに自分がいる場合は下記のように出力される。

    >  dev
    >* master
    

ブランチの作成

  • 下記コマンドを実行して現在自分がいるブランチのコミットからブランチを作成する。

    $ git branch 作成するブランチ名
    

ブランチの移動

  • 下記コマンドを実行してブランチを移動する。

    $ git checkout 移動したいブランチ名
    

merge(他ブランチの修正を取り込み)

  • Bブランチの修正内容をAブランチにmergeする方法を下記に記載する。

    $ git checkout Aブランチ
    $ git merge Bブランチ
    
  • 下記コマンドを実行してtestブランチの修正内容をmasterブランチにmergeする。

    $ git checkout master
    $ git merge test
    
1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?