❯ pushd ../my-project-branches/bugfix-123/ ~/my-project-branches/bugfix-123 ~/my-project ❯ echo 'new commit content' >> README.md; git commit -am 'new commit' [bugfix-123 2ff5902] new commit 1 file changed, 1 insertion(+) ❯ popd ~/my-project ❯ git log --oneline bugfix-123 2ff5902 (bugfix-123) new commit 5b67eb2 (HEAD -> main) first commit ❯ git worktree add -b sp ../my-project-branches/spanish Preparing worktree (new branch 'sp') HEAD is now at 5b67eb2 first commit ❯ git worktree add -b fr ../my-project-branches/french Preparing worktree (new branch 'fr') HEAD is now at 5b67eb2 first commit ❯ cd ../my-project-branches/spanish ❯ echo 'Léeme' > README.es.md ❯ git add README.es.md; git commit -am 'spanish readme' [sp 4d57bfb] spanish readme 1 file changed, 1 insertion(+) create mode 100644…