Complete the code to create a new branch in Figma.
figma.[1]('new-feature')
In Figma, branch is used to create a new branch for parallel work.
Complete the code to merge a branch named 'feature' into the main branch.
figma.merge('[1]', 'main')
To merge changes from the feature branch into main, specify 'feature' as the source branch.
Fix the error in the code to correctly merge the 'bugfix' branch into 'main'.
figma.[1]('main', 'bugfix')
The merge function takes the source branch first, then the target branch. The correct order is merge('bugfix', 'main').
Fill both blanks to create a branch named 'experiment' and then merge it into 'main'.
figma.[1]('experiment') figma.[2]('experiment', 'main')
First, create a branch with branch('experiment'). Then merge it into main with merge('experiment', 'main').
Fill all three blanks to create a branch 'test', commit changes, and merge into 'main'.
figma.[1]('test') figma.[2]('Added new UI elements') figma.[3]('test', 'main')
First, create the branch with branch('test'). Then commit your changes with commit('Added new UI elements'). Finally, merge the branch into main with merge('test', 'main').