I am trying to provide a repository between my Mac (laptop) and PC (desktop). There are some external dependencies for the project, which are stored in different places on each machine and marked in the .classpath file in the Eclipse project. When project changes are shared, dependencies are interrupted. I am trying to figure out how to avoid this.
I tried using .hgignore with the following settings, among other things, without success:
syntax: glob *.classpath
Based on this question , it seems that the .hgignore file will not allow Mercurial to ignore files that are also transferred to the repository. Is there another way? Other ways to configure a project to work?
source share