This is a repo that stores dot files for my home directory.
It's primarily used for a Mac system.
- Run the following in your home directory (credit):
git init . git remote add origin <repository-url> git fetch --all --tags --prune git checkout master
- Ignore changes to
.ssh/config
(credit):git update-index --assume-unchanged .ssh/config
Files are excluded by default (see .gitignore
). If there's a new file that should be tracked, the .gitignore
file will need to be updated before you will be able to add it.