Git branching#

When a project becomes more complex or the team gets bigger, friction arises. Work in progress commits from e.g. developers can disturb the work of the artist. To prevent this, you can split the project into certain zones. Each zone can then be used by a developer or artist without getting in each other’s way. When the work is finished, these zones are dissolved and merged into the project. Version control systems like Git call such a thing Branches.

Options#

Change Branches#

Simply select the branch you want to work on from the dropdown in the Timeline. Anchorpoint will then switch to that branch and you will only see the commits from that branch.

Create Branches#

Click on the “Create new Branch” option in the Branches dropdown and give it a name. Git allows you to create an infinite number of branches, but it is advisable to keep the number of branches low to avoid making the project unnecessarily complex.