如何使用git undo合并文件

时间:2018-12-04 14:12:30

标签: git git-merge

在git中。 我正在寻找将master合并到功能分支的最佳方法,以跳过文件[path_to_file_a] / a和[path_to_file_b] / b

想法?

Thx。

1 个答案:

答案 0 :(得分:1)

一种方法:

git log
# "q" to quit
# note the first commit hash (for HEAD commit), let's call it <hash>
git merge master
git checkout <hash> [path_to_file_a]/a
git checkout <hash> [path_to_file_b]/b

提交结果:

git commit -a