

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 4
click for more info
Not enough gems
Cost: 6 gems
1: Rebase
incomplete
2: New Branch
incomplete
3: Run Rebase
incomplete
4: When to Rebase
incomplete
This lesson's interactive features are locked, please to keep using them
To use rebase to bring changes from main onto a current branch (let's pretend we're on one called jdsl), we would run this while on the jdsl branch:
git rebase main
This will do the following:
main and use it as the temporary new base for the rebase processjdsl one at a time onto this temporary locationjdsl branch to point to the last replayed commit in the temporary location, making this the new permanent jdsl.main branch; jdsl now includes all changes from main.Run and submit the CLI tests from the update_dune branch.