Git:ブランチ
履歴の流れを分岐して記録していくためのもの。
分岐したブランチは他のブランチの影響を受けないため、同じリポジトリ中で複数の変更を同時に進めていくことができる。
Gitでは、ブランチに3種類ある。
ブランチを作る目的(例)
実験的な変更のため
新しい機能の追加のため
バグフィックスのため
code:branch.mermaid
%%{init:{
'gitGraph':{
'showBranches': true
}}}%%
gitGraph
commit
commit
branch develop
checkout develop
commit
branch feature_1
checkout feature_1
commit
checkout develop
checkout feature_1
commit
checkout develop
merge feature_1
commit
commit
checkout main
commit
commit
Git-term.icon
https://img.shields.io/badge/git-ブランチ-F05033.svg?style=for-the-badge&logo=git&logoColor=white