SkillSeevaSkillSeeva
HomeResourcesScheduleRoadmapTeam
Back to Categories
Current Path
Git
Basic CommandsBranching & MergingWorking with Remotes
Jump to topic:
Basic CommandsBranching & MergingWorking with Remotes

Branching & Merging

Branches allow you to work on new features without affecting the main code.
bash
git branch [name]    # Create branch
git checkout [name]  # Switch to branch
git merge [name]     # Merge branch into current
2 / 3