我们使用 git hubflow。每个 tam 成员都有自己的功能分支。我需要从我的分支切换到另一个分支。
让我们决定我在feature/branch_1工作,我的同事在feature/branch_2 工作。
branch_1 包含parent_project和subprogect_1文件夹
branch_2 包含parent_project和subprogect_2文件夹
我怎样才能替换我的工作空间的所有内容?
当我跑步时
$ git hf feature checkout branch_2
我明白了
Switched to branch 'feature/branch_2'
Your branch is behind 'feature/branch_1' by 24 commits, and can be fast-forwarded.
(use "git pull" to update your local branch)
我可以拉,但我的subproject_1还在这里。
是否可以在分支之间没有任何依赖关系的情况下完全从一个 feture 早午餐切换到另一个?