使用新创建的远程分支更新 .git
Updating .git with newly created remote branch
上下文:
- 在分支 A 工作
- 分支 B 已远程创建并正在更新
git branch -a
不显示分支 B
分支B如何签出?
你应该这样做:
git fetch --all # Fetch all remote branches
git checkout B
上下文:
- 在分支 A 工作
- 分支 B 已远程创建并正在更新
git branch -a
不显示分支 B
分支B如何签出?
你应该这样做:
git fetch --all # Fetch all remote branches
git checkout B