This is a repository for all of my dotfiles.
cd ~/
git init
git remote add origin https://github.com/simonkir/dotfiles.git
git fetch --all
git reset --hard origin/master
git config --local status.showUntrackedFiles no
hides untracked filesgit config --local core.fileMode false
hides files with permission changesgit update-index --(no-)assume-unchanged [<file>]
don't show changes in tracked filegit update-index --(no-)skip-worktree [<file>]
don't show changes in tracked file
- bare repo: medium.com
- bare repo: Atlassian Tutorials
- bare repo: Arch Wiki
- conversion: Stackexchange
- conversion: Stackoverflow
for further documentation.