I have a local git repo in a directory that contains soft links (Linux), and I'd like to ignore those links so that git status
etc. won't bother about these links. I am using git v2.34.
This answer proposes to set core.symlinks
to false
, which I did in the local .git/config
and cross-checked by means of
$ git config --get core.symlinks
false
Despite of that setting, git is still showing the links with git status
. I know I can add all them symlinks to .gitignore
by hand (or by means of a script for that matter).
So what part am I missing?
The documentation of .gitignore
has only two mentions of "symbolic link" which don't answer my question, so presumably it's not a feature of git as of v2.32 ?