Hello! I have an issue with synhronize breakpoints
I have office and home computer and would like continue working(debug) with project at home. By some reason i have excluded .idea folder from git repository. I have dropbox account an could't undestand what should i place to it . Where project breakpoints settings are located?
请先登录再写评论。
They are saved in .idea/workspace.xml file (which usually should not be under version control when multiple users/devs are involved, since this file contains settings specific to this user), search for <component name="XDebuggerManager"> section (at least that is where breakpoints for PHP are saved when xdebug is used)
Thanks