My colleague and I started working on the same project using GitHub and RubyMine.
Our original sin was to push the .idea folder (created and updated automatically by RubyMine) in my local repository for GitHub. This folder creates a conflict with the local repository of my team every time it pulls from the remote.
To fix this problem, we must delete the .idea folder from the remote repository. Now, from my leading branch, I pull it out of the remote repository, and it seems that the .idea files have been deleted (I'm not sure). Therefore, RubyMine will not allow me to see project folders (i.e. Application, config, public) in the Project view, even if these folders still exist.
My question is: how to restore the original setup in RubyMine, where can I see the project folders?
source share