上下文:我正在使用Git来处理我正在开发的应用程序。我的应用程序使用一个开源库,我根据自己的需要进行修补。这个开源库在SVN中。
问题:我正在寻找一种在我的Git存储库中导入和维护这个第三方组件的方法。我不需要在上游推送我的补丁。
开源库的SVN存储库非常标准。
trunk/
tags/
- v1/
- v2/
branches/
我的Git工作副本中的目录结构非常简单。
my_app/
lib/
如何从lib/
中的标记v1导入lib的源代码?
当开发团队在其SVN存储库中创建标记v2时,如何合并或修改新版本的库?
为了展示这种情况的具体示例,我创建了一个bash脚本:
# Create the open source library's SVN repo and its first tag.
svnadmin create lib_svn_repo/
svn checkout "file:///${PWD}/lib_svn_repo/" lib_working_copy
( cd lib_working_copy ; mkdir -p trunk tags branches ; svn add * ; svn commit -m 'Initialize SVN repo' ; cd trunk ; echo "print 'Hello v1'" >source.py ; svn add * ; svn commit -m 'Development for v1' ; cd .. ; svn up ; svn cp trunk/ tags/v1 ; svn commit -m 'Tag v1' ; sed --in-place 's/v1/v2/' trunk/* ; svn commit -m 'Development for v2' )
# Initialize my own project's git repository.
mkdir my_app
( cd $_ ; git init ; mkdir -p src lib ; touch src/.gitignore ; git add * ; git commit -m 'Initialize my app' )
# How to import the lib source code from tag v1 in the lib subdirectory???
# Expected: lib/ contains a source.py that displays "Hello v1".
# Commit local changes in my git repo.
( cd my_app/ ; echo "print 'My local modification'" >>lib/source.py ; git add * ; git commit -m 'Added local modification to the library' )
# Library dev team creates a tag v2.
( cd lib_working_copy ; svn up ; svn cp trunk/ tags/v2 ; svn commit -m 'Tag v2' )
# How to merge or rebase lib/ on tag v2???
# Expected: lib/ contains a source.py file that displays both "Hello v2" and "My local modification".
答案 0 :(得分:1)
然后(因为你不需要历史记录)我建议你导出svn repo并将它作为文件导入你的git存储库,这是最简单的。
然后监视您关心的外部svn仓库中标记的更改,并将基于外部svn repo的差异作为补丁应用到您的git存储库。