So, I am cloning a project that I have in a new folder with a different name than the repo name. So, the clone command looks something like this:
git clone --recursive git@example.imtqy.com :/my-repo other-folder-name
After the first time, when I open it in Android Studio 1.4.1, the following files change:
modified: .idea/.name deleted: .idea/codeStyleSettings.xml deleted: .idea/dictionaries/fronilse.xml deleted: .idea/encodings.xml modified: .idea/gradle.xml modified: .idea/inspectionProfiles/Project_Default.xml modified: .idea/misc.xml deleted: .idea/runConfigurations/I_Tests.xml deleted: .idea/runConfigurations/JTestsVG.xml deleted: .idea/runConfigurations/U_Tests.xml deleted: .idea/runConfigurations/VG.xml deleted: .idea/scopes/scope_settings.xml modified: .idea/vcs.xml
What's happening? Why does it delete my startup settings and code style settings? Why does it rename my project (in the .name file, the project is renamed under the same name as the folder). I am not allowed to call the folder, what do I need?
Therefore, if I use the same folder name as the repo, no changes occur. The simplest solution is to just go with this, of course, but I wonder if this is the intended functionality or if I can post the problem?
edit: Actually, I was able to reproduce the error even when using the name of the source folder
source share