We use git hubflow. Each tam member have his own feature branch. I need to switch from my branch to another one.
Let's decide I am working in feature/branch_1, and my colleguae in feature/branch_2.
branch_1 contains parent_project and subprogect_1 folders
branch_2 contains parent_project and subprogect_2 folders
How can I get replace all contents of my workcpace ?
when I run
$ git hf feature checkout branch_2
I get
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)
I can pull, but my subproject_1 is still here.
Is it possible to completely switch from one feture brunch to another without any dependencies between branches ?