我的git repo中有两个分支:
1.硕士
2. FeatureBranch
FeatureBranch 是从主创建的,所有更改都会在特定子文件夹中的项目解决方案中生成,例如:的 FeatureBranchDir 即可。分支创建后,其他一些开发人员仍然继续提交 Master ,但所有更改都在其他文件夹中。
现在,我想用 FeatureBranch 替换 Master 分支中的 FeatureBranchDir 。
这样做的最佳做法是什么?
请注意: MasterBranchDir 存在于 Master 和 FeatureBranch 中,并且git merge不是一个选项,因为我希望替换目录而不是合并两个版本。而且,我想保留FeatureBranchDir的历史记录。但我认为这不是一个问题,因为历史记录保存在FeatureBranch中,对吗?