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.
