Its a bug in visual studio 2015 and seems to affect iOS developers running OSX Yosemite (most reports came from this version)
There are two common problems with git integration during the conversion process (probably your project created it during the transfer):
- .git * (.gitignore, etc.) are in the wrong folder
- .git * (.gitignore, etc.) are configured incorrectly
Decision:
- move something .git * to your root folder. those. the folder with the .sln file, with the exception of those located in the folder of other platforms (android, etc.), they are probably located in the project folder (one level inside the project root folder) or less likely in the www folder.
- reconfigure your .git * files since this is not a git issue, I will try not to worry about the details, but an example of visual studio .gitignore can be found here (this will most likely solve your problem)
I hope the answer was useful, btw let me know if the solution to your problem has been fixed, there are many errors in developing the cord in VS 2015, and it is best to wait for update 1, unfortunately.
source share