How to create a link to a directory that will be saved git submodule update?
Given the following directory structure:
proj
|
| `
| `
`
I created a soft link from proj/lib/to proj/lib3/submod/libusing something like the following command:
brad@bradpc:~/proj/lib$ ln -s ../lib3/submod/lib submodlib
creating the following directory structure:
proj
|
| `
| `
`
`
However, the launch git submodule updatedestroys my link. I got the impression that a soft link is a logical link to a relative path, so deleting an object and adding it again connect this link. How can I achieve the desired effect?
source
share