git checkout bugfix # 切换到bugfix这个分支
# 更新远端分支列表 git fetch origin # 方法1 git checkout -b feature/login origin/feature/login # 方法2 git switch -c feature/login origin/feature/login # 方法3(-t == --track) git switch -t origin/feature/login # 注意:本地 feature/login 会自动追踪 origin/feature/login