


To check out the neccesary branch, in the Branches popup, choose the repository first. In the Branches popup or in the Branches pane of the Git tool window, select the branch that you want to switch to under Local Branches and choose Checkout from the list of available operations.įor multi-repository projects, branches are automatically grouped by repositories. When multitasking, you often need to jump between branches to commit unrelated changes. Rebase onto Remote: P圜harm will rebase your local branch onto the remote branch, keep your local commits, reset the local branch, and change tracking. If the local branch contains commits that can be lost because of the reset, P圜harm will offer you to:ĭrop Local Commits: P圜harm will drop your local commits, reset the local branch, and change tracking. If no commits will be lost, and the local branch already tracks the remote, P圜harm automatically resets the local branch to the remote branch and then checks it out. Depending on the situation, here is how you can finish the checkout process: It can happen that you already have a local branch with the same name as a remote branch you want to check out. А new local branch will be created, checked out and set to track the origin remote branch. In the Branches popup or in the Branches pane of the Git tool window, select a branch that you want to check out locally from Remote Branches, or Common Remote Branches if your project has several roots and synchronous branch control is enabled, or from Repositories | Remote Branches if it is disabled.Ĭhoose Checkout from the list of actions.
Checkout a remote branch full#
To make sure you have a full list of remote branches, click Fetch in the Branches popup: Check out a branch as a new local branch If you want to work on a branch created by someone else, you need to check it out to create a local copy of that branch. If you do not want your branches to be grouped by prefix, click the Settings icon in the upper-right corner of the Branches popup and then deselect the Group by Prefix option to disable it. In order for branches to be grouped, prefixes in branches' names should be separated with forward slashes /.

In the Branches popup, P圜harm automatically groups branches by prefix and stores them in expandable lists. While searching for a particular branch and navigating the list of branches, press Control+F to move the focus back to the search field. You can also select a branch in the Branches pane of the Git tool window and click on the toolbar. To mark a branch as a favorite, in the Branches popup, hover the mouse cursor over the branch name, and click the star outline that appears on the left:Īlternatively, select the branch you want to mark as favourite and press Space. Favorite branches are always displayed at the top of the Branches popup and in the Branches pane of the Git tool window. The main branch is marked as a favorite by default. If you have many branches, you may want to see only your favorite ones.

In the dialog that opens, change the branch name to the one you need. In the Branches popup or in the Branches pane of the Git tool window, select the branch you want to rename and choose Rename. In the Log view, select the commit that you want to act as a starting point for the new branch and choose New Branch from the context menu. In the Branches popup or in the Branches pane of the Git tool window select a local or a remote branch that you want to start a new branch from and choose New Branch from Selected. The new branch will start from the current branch HEAD. Once you start typing a name for your new branch, P圜harm will suggest relevant prefixes based on the names of existing local branches. In the dialog that opens, specify the branch name, and make sure the Checkout branch option is selected if you want to switch to that branch. In the Branches popup, choose New Branch or right-click the current branch in the Branches pane of the Git tool window and choose New Branch from 'branch name'. Create new branch Create a new branch from current branch You can also manage branches and perform batch operations with multiple branches in the Branches pane of the Git tool window. To invoke it, click the Git widget in the Status bar (it shows the name of the branch that is currently checked out): In P圜harm, all operations with branches are performed in the Git Branches popup.
Checkout a remote branch code#
In Git, branching is a powerful mechanism that allows you to diverge from the main development line, for example, when you need to work on a feature, or freeze a certain state of a code base for a release, and so on.
