Answer the question
In order to leave comments, you need to log in
How to resolve a conflict within a repository between UNIX-like symlinks and Windows?
The repository stores UNIX-like symbolic links. Most users of the repository use Linux for development, so it doesn't bother them.
I am a user of this repository and at the same time a user of MS Windows 10. I need symlinks inside the repository, but, of course, not UNIX-like, but mklink.
You have to overwrite UNIX-like symlinks and then use mklink to create a symlink for Windows, since they have the same name. That is, UNIX-like symlinks are always "changed" for the repository. You have to commit without them.
Please suggest a solution to get rid of permanently "changed" (Changes to be committed) UNIX-like symbolic links.
Answer the question
In order to leave comments, you need to log in
git config --global core.excludesfile "%USERPROFILE%\.gitignore_globbal"
git config --global core.excludesfile "$Env:USERPROFILE\.gitignore_globbal "
git config --global core.excludesfile '~/.gitignore'
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question