在git中。 我正在寻找将master合并到功能分支的最佳方法,以跳过文件[path_to_file_a] / a和[path_to_file_b] / b
想法?
Thx。
答案 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