我是 git 新手,我有兴趣在 git 存储库中更新目录,我正在克隆存储库并在其上运行 filter-branch:
git clone http://url.git
cd repository
git filter-branch --subdirectory-filter directory-I-m-interested
这太棒了,存储库现在有目录的内容-我对根路径感兴趣,但是我仍然不确定如何使该目录中的文件与原始项目保持同步。
我尝试过使用以下命令:
git fetch
git cherry-pick hash_taken_from_last_command
我收到以下错误:
error: could not apply a0ede43... 2
hint: after resolving the conflicts, mark the corrected paths
hint: with 'git add <paths>' or 'git rm <paths>'
hint: and commit the result with 'git commit'
可能我只是在执行无意义,有什么提示吗?