I want to version control my linux scripts & settings. I have a list of the files & directories I care about, they're all over the file system. I don't want to track my home dir as there's many files I don't want to track & it contains symlinks to external locations. Is there a version control system which can track specified files in an location external to the version control's root directory?
Update : I found "git config core.worktree /" would track everything under /, though the file locations in the repo are forced to be the canonical paths excluding symlinks so it's not really suitable.