I am currently importing a cvs project into git.
After importing, i want to rewrite the history to move an existing directory into a seperate submodule.
Suppose i have a structure like this:
file1
file2
file3
dir1
dir2
library
Now i want to rewrite the history so that the directory library is always a git submodule. Say, split out specified directories into their own submodules / subprojects
This is my currently code:
File rewrite-submodule (which is called)
cd project
git filter-branch --tree-filter $PWD/../$0-tree-filter --tag-name-filter cat -- --all
File rewrite-submodule-tree-filter
#!/bin/bash
function gitCommit()
{
unset GIT_DIR
unset GIT_WORK_TREE
git add -A
if [ -n "$(git diff --cached --name-only)" ]
then
# something to commit
git commit -F $_msg
fi
}
_git_dir=$GIT_DIR
_git_work_tree=$GIT_WORK_TREE
unset GIT_DIR
unset GIT_WORK_TREE
_dir=$PWD
if [ -d "library" ]
then
_msg=$(tempfile)
git log ${GIT_COMMIT}^! --format="%B" > $_msg
git rm -r --cached lib
cd library
if [ -d ".git" ]
then
gitCommit
else
git init
gitCommit
fi
cd ..
export GIT_DIR=$_git_dir
export GIT_WORK_TREE=$_git_work_tree
git submodule add -f ./lib
fi
GIT_DIR=$_git_dir
GIT_WORK_TREE=$_git_work_tree
This code creates the .gitmodules file, but not the submodule commit entry (the line Subproject commit <sha1-hash>, output by git diff) in the main repository and the files in directory library are still versioned in the main repository and not in the subproject repository.
Thanks in advance for any hint
The .gitmodules look like this:
[submodule "library"]
path = library
url = ./library
git submodule– MartinF Nov 16 '12 at 22:26