创建新的 git 工作树时,它会显示如下消息
$ git worktree add -b hotfix ../hotfix origin/master
Enter ../hotfix (identifier hotfix)
Branch hotfix set up to track remote branch master from origin.
Switched to a new branch 'hotfix'
$ cd ../hotfix
在这里,标识符有什么用?我观察到,如果我在不同的路径上创建另一个工作树,但文件夹名称相同,例如../abc/hotfix
,它将分配标识符为hotfix2
。用户是否使用此标识符,例如使用标识符移动到特定工作树或专门删除它?