I'm developing a small app in both PHP and Java. It has a few pics, CSS and JS, that must be shared in both.
I don't want these files duplicated, and the JS and CSS must be the same in both. So I'd like that when I change it in one place, the change be replicated in the other.
In Unix we have symbolic links, so that the same file/folder can "be" in multiple places in File System. In Subversion we have svn copy
, but once it's executed both copies become independent. I wanted to keep them together, a commit done in one copy will be applied in the "other" too.
Any idea how to do that?