Today I Learned

2022/08/06

git symlink

How to consistently establish relative symlinks within a git repo:

cd "$target_dir" # the directory in which you want to create the symlink
ln -s ../relative/path/to/source.file ./symlink.name

https://stackoverflow.com/a/15465514/6571327