I have a directory in my repo (call it blah
) which contains some files that I manualy copied from another repo (repo-blah
). One day, I decide to get smart and make this blah
directory a submodule, so that I don't have to manually recopy the files any time they change in repo-blah
, and so that I can make changes to those files in my repo and have a gitish way of updating repo-blah
.
I'd been working on the master branch, so I make another branch called sub-blah-branch
where I remove the blah directory from the index:
$ git rm -r blah
and then create a submodule for it:
$ git submodule add uri/to/repo-blah blah
I commit everything, and make sure the repo is clean:
$ git status
# On branch sub-blah-branch
nothing to commit (working directory clean)
Then, whilst feeling pretty cool about all this submodule stuff, I try to checkout the master branch. But I get this:
$ git checkout master
error: The following untracked working tree files would be overwritten by checkout:
blah/[every file that I had manually copied from repo-blah]
Please move or remove them before you can switch branches.
Aborting
Pro Git's chapter on submodules tells me that when switching from branches that have created submodules, the contents of those submodules aren't automatically removed, and instead become untracked once the repo switches branches. In this situation, I can't switch to master
without doing rm -rf
on the blah
directory first.
Is there a better way to deal with this problem?
I'm using git version 1.7.9.5
cd ../x
" is quicker than "git checkout x
" too. Plus, there's something weirdly satisfying about pulling from local repos. – Alvaroalveolar