We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Merge

Just as we merged branches within a single local repo, we can also merge branches between local and remote repos.

Syntax

git merge <remote>/<branch>

For example, if you wanted to merge the primeagen branch of the remote origin into your local main branch, you would run this inside the local repo while on the main branch:

git merge origin/primeagen

Assignment

Run and submit the CLI tests from inside the new webflyx-local directory.