What is the correct way to handle symlinks in git?
I have the following structure:
Vendors
Module A
Module B
Module C
App
Code
Modules
Cor
Git can handle symlinks just fine as long as the operating system used by all developers supports them. Since you depend on having these symlinks present I will assume that your development environments all support symlinks.
To decide if something should be included in your git repository or not (symlink or otherwise) consider the following:
In your case it seems like the symlinks are not generated and they are needed in all environments, so putting them in the repository should be fine.
However, when creating them be sure to create them as relative symlinks rather than absolute symlinks, so that they'll work regardless of where the repository is cloned. The easiest way to do this is to change directory into the Modules directory and create the symlink from there:
cd App/Code/Modules
ln -s "../../../Vendors/Module A" "Module A"