Comment on How do you manage your dotfiles?
gamma@programming.dev 1 year ago
I’ve done symlinks into a separate directory before, but I found the best method for me was to let ~
be a git repo.
There are two keys to making this work well:
echo ‘*’ > ~/.gitignore
: This waygit status
isn’t full of untracked files. I can stillgit add -f
what I actually want to track.git branch -m dots
: For clarity in my shell prompt.