I have a repository that I created early in the learning curve of a project. As I've learned more, I've realized that this is creating problems because some of the files I want tracked aren't required in the compiled source. What I'd like to do is create a new "project" parent directory, move the existing source directory into that parent directory and the migrate the files that don't need to be compiled into that parent directory.
Is that possible with git? Will I completely destroy all of the references since I'll want to move the .git/
directory up to the parent level as well?
Thanks.