0Pricing
Linux Command Line Mastery · Lesson

Branching and Merging with Git from the Command Line

Extend your Git basics by working with branches: create, switch, merge, resolve conflicts, and follow a clean feature-branch workflow.

Why Branches?

You know how to commit and track files. Branches let you develop features in isolation without disturbing the main line of work, then merge them back when ready.

Listing Branches

git branch lists branches and marks the current one with an asterisk.

git branch

All lessons in this course

  1. Git Basics from the Command Line
  2. Environment Variables and Aliases
  3. Shell Configuration: `.bashrc`, `.zshrc`, `.profile`
  4. Branching and Merging with Git from the Command Line
← Back to Linux Command Line Mastery