After running synx, the .git folder seems to get destroyed. It is still there, but git does not recognize it as such.
I do not get any error messages during the run.
This is a rough distribution of our product, as seen in XCode:
touchapp/ (This is the project file)
a.bundle
b.bundle
Localizable.strings/
LanguageA.strings (Base)
LanguageB.strings
LanguageC.strings
Images/
(Just a bunch of images)
touch/
Images.xcassets (Launch images, application icons and whatnot)
SomeGroupWithSomeCode/
code.h
code.m
SubgroupWithSomeMoreCode/
subcode.h
subcode.m
SomeGroupWithSomeMoreCode/
morecode.h
morecode.m
Libraries/
(A number of git submodules, but also some none libraries and some other external code files)
(Some have their own .xcodeproj, some have subprojects of their own as well)
Frameworks/
Products/
This is roughly how it is reflected in filesystem:
touchapp/
.git/
.gitignore
.gitmodules
touch.xcodeproj/
touch/
LibraryA/
LibraryA.xcodeproj/
somecodefromlibrary.h
somecodefromlibrary.m
LibraryB/
(Basically the same as Library A)
LibraryC/
libraryheaders.h
somecode.c
LanguageA.lproj/
Localizable.strings
LanguageB.lproj/
Localizable.strings
LanguageC.lproj/
Localizable.strings
Images/
Inline Icons/
CodeFromExternalParty/
somecode.h
somecode.m
Animation/
image1.png
image2.png (and so on for about 50 times)
After running synx, the .git folder seems to get destroyed. It is still there, but git does not recognize it as such.
I do not get any error messages during the run.
This is a rough distribution of our product, as seen in XCode:
This is roughly how it is reflected in filesystem: