On 12 Oct 2017 at 11:48 Thomas Braun wrote: > On 9 Oct 2017 at 23:59, Stefan Beller wrote: >> On 9 Oct 2017 at 14:29, Thomas Braun wrote: >>> I'm currently in the progress of pulling some subprojects in a git repository of mine into their >>> own repositories and adding these subprojects back as submodules. >>> >>> While doing this I enountered a potential bug as checkout complains on branch switching that a >>> file already exists. [...] >>> >>> `error: The following untracked working tree files would be overwritten by checkout:` I am currently attempting the same thing, and experiencing the same bug, using Git 2.17.1. >> (And I presume you know about --recurse-submodules as a flag for git-checkout) The behaviour seems to be the same regardless of whether I use the --recurse-submodules flag with git-checkout. >> This is consistent with our tests, unfortunately. [...] >> >>> If I'm misusing git here I'm glad for any advice. >> >> You are not. > > Glad to know that. I was also glad to see this reassurance :) It might have been nice if the reassurance came at an earlier stage, however: at the CLI, rather than only after searching the mailing list. A user who does not think to do the latter might well labour under the misapprehension that they have done something wrong, rather than encountered a bug. Perhaps, if the bug is not going to be fixed terribly soon, a sentence or two could be added to the error message explaining the situation and advising the user of a workaround? Speaking of which, what is a good workaround in this case? `git checkout --force <branch>`? >> Apart from this bug report, would you think that such filtering of >> trees into submodules (and back again) might be an interesting feature >> of Git or are these cases rare and special? > > For me not particularly. In my case it is a one time thing going from an embedded project folder to a submodule. The option to convert an existing directory into a submodule is something that I think developers like to have available. It seems intuitive: "Oh, I see now that what this directory holds is effectively a separate project. Let me check out a new branch, and replace the directory with a submodule on that branch. Assuming it goes well, then I will afterwards merge this new branch into master." Regardless, the bug has clearly been giving people headaches for several years (forgive me if you were already aware of these data points): - https://ryansechrest.com/2014/03/git-error-switching-branch-replacing-directory-submodule/ - http://blog.dcycle.com/blog/105/gitsubmodulizing-and-gitflow/ - https://stackoverflow.com/q/9299063 - https://stackoverflow.com/a/48402543 - https://stackoverflow.com/q/24091246 - https://stackoverflow.com/q/29372450 - https://github.com/supercollider/supercollider/issues/2001 - https://github.com/supercollider/supercollider/issues/2221 Thank you to Thomas for reporting this issue to the mailing list, and to Stefan for the helpful reply. Thanks as always to the Git maintainers, and good luck with fixing this bug :)