7.2 KiB
title, intro, redirect_from, versions
| title | intro | redirect_from | versions | ||||||
|---|---|---|---|---|---|---|---|---|---|
| Managing branches | You can create a branch off of a repository's default branch so you can safely experiment with changes. |
|
|
About managing branches
You can use branches to safely experiment with changes to your project. Branches isolate your development work from other branches in the repository. For example, you could use a branch to develop a new feature or fix a bug.
You always create a branch from an existing branch. Typically, you might create a branch from the default branch of your repository. You can then work on this new branch in isolation from changes that other people are making to the repository.
You can also create a branch starting from a previous commit in a branch's history. This can be helpful if you need to return to an earlier view of the repository to investigate a bug, or to create a hot fix on top of your latest release.
Once you're satisfied with your work, you can create a pull request to merge your changes in the current branch into another branch. For more information, see "Creating an issue or pull request" and "About pull requests."
You can always create a branch in {% data variables.product.prodname_desktop %} if you have read access to a repository, but you can only push the branch to {% data variables.product.prodname_dotcom %} if you have write access to the repository.
{% data reusables.desktop.protected-branches %}
Creating a branch
{% tip %}
Tip: The first new branch you create will be based on the default branch. If you have more than one branch, you can choose to base the new branch on the currently checked out branch or the default branch.
{% endtip %}
{% mac %}
{% data reusables.desktop.click-base-branch-in-drop-down %}
{% data reusables.desktop.create-new-branch %}
{% data reusables.desktop.name-branch %}
{% data reusables.desktop.select-base-branch %}
{% data reusables.desktop.confirm-new-branch-button %}

{% endmac %}
{% windows %}
{% data reusables.desktop.click-base-branch-in-drop-down %}
{% data reusables.desktop.create-new-branch %}
{% data reusables.desktop.name-branch %}
{% data reusables.desktop.select-base-branch %}
{% data reusables.desktop.confirm-new-branch-button %}

{% endwindows %}
Creating a branch from a previous commit
{% data reusables.desktop.history-tab %}
2. Right-click on the commit you would like to create a new branch from and select Create Branch from Commit.
{% data reusables.desktop.name-branch %}
{% data reusables.desktop.confirm-new-branch-button %}

Publishing a branch
If you create a branch on {% data variables.product.product_name %}, you'll need to publish the branch to make it available for collaboration on {% data variables.product.prodname_dotcom %}.
- At the top of the app, click {% octicon "git-branch" aria-label="The branch icon" %} Current Branch, then click the branch that you want to publish.

- Click Publish branch.

Switching between branches
You can view and make commits to any of your repository's branches. If you have uncommitted, saved changes, you'll need to decide what to do with your changes before you can switch branches. You can commit your changes on the current branch, stash your changes to temporarily save them on the current branch, or bring the changes to your new branch. If you want to commit your changes before switching branches, see "Committing and reviewing changes to your project." {% tip %}
Tip: You can set a default behavior for switching branches in the Advanced settings. For more information, see "Configuring basic settings."
{% endtip %}
{% data reusables.desktop.current-branch-menu %}
{% data reusables.desktop.switching-between-branches %}
3. If you have saved, uncommitted changes, choose Leave my changes or Bring my changes, then click Switch Branch.

Deleting a branch
You can't delete a branch if it's currently associated with an open pull request. You cannot undo deleting a branch.
{% mac %}
{% data reusables.desktop.select-branch-to-delete %}
{% data reusables.desktop.delete-branch-mac %}

{% endmac %}
{% windows %}
{% data reusables.desktop.select-branch-to-delete %}
{% data reusables.desktop.delete-branch-win %}

{% endwindows %}
Further reading
- "Cloning a repository from {% data variables.product.prodname_desktop %}"
- "Branch" in the {% data variables.product.prodname_dotcom %} glossary
- "About branches"
- "Branches in a Nutshell" in the Git documentation
- "Stashing changes"