在 Git 中导出具有历史记录的子树
我的 Git 存储库中有一个文件夹,我想将其移至其自己的存储库中。是否可以将该文件夹的历史记录与该文件夹一起移动?
我之前只是执行了 git rm -r --cached subfolder/
操作,然后在子文件夹上执行 git init
操作。但是,历史记录不会导入到新存储库中。
I have a folder in my Git repository that I'd like to move out in to its own repository. Is it possible to move the history of that folder along with the folder?
I've previously been doing just a git rm -r --cached subfolder/
and then git init
on the subfolder. However, the history is not imported in to the new repository.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
引用
git-filter- 中的示例分支(1)
Quoting an example from
git-filter-branch(1)
对于 2021 年(或之后)到达这里的其他人来说,核心 git 团队并不强烈推荐 git filter-branch。
相反,推荐的工具是 git-filter-repo 它可以轻松解决这个问题
For anyone else arriving here in 2021 (or later), git filter-branch is not strongly recommended by the core git team.
Instead the recommended tool is git-filter-repo which makes easy work of this problem