GitHub Branch

Create and manage branches directly on GitHub for collaboration and pull requests.

On this page

Create branch on GitHub

You can create a branch directly from the branch selector dropdown.

Why create remote branches

  • Collaborate with teammates
  • Open pull requests
  • Isolate features

Sync with local branch

git fetch
git checkout feature-branch

Delete branch

After merging, delete unused branches to keep repository clean.