I have a repo with 2 banch: master and b1.
Currently, the checkout branch is master (in main worktree).
I create a worktree (called b1_worktree) and checkout the b1 branch by default.
So now I can work on both branch without using "checkout" command.
And this is my questions:
- After changing the code in branch b1 in b1_worktree, how can I merged b1 from b1_worktree to master branch in main worktree?
- And is it possible to update the b1 content from b1_worktree to main worktree?