Reputation: 67
We have multiple developers working on a shared project through dropbox. Each time one of the developers saves a file, the other developers get the following message:
"Project Files Changed
Project components were changed externally and cannot be reloaded:
ToolWindowManager
Would you like to reload project?"
How can each person have their own settings in a shared project so this is not a problem?
Upvotes: 0
Views: 191
Reputation: 3955
You should use VCS (Version control systems) as for example git, and ignore the IDE configuration files (.gitignore
), so you can avoid the conflicts with the configuration files
Upvotes: 1