README.md (665B) - Raw
1 dotfiles 2 ======== 3 4 This is my poor-man's configuration management. 5 6 Split into 3 parts: 7 8 Dotfiles in $HOME 9 ----------------- 10 11 $ git clone --recursive git@github.com:motiejus/dotfiles.git .dotfiles 12 $ cd .dotfiles 13 $ stow bash ctags tmux vim 14 15 Updating submodules 16 ------------------- 17 18 On a clean tree: 19 20 $ cp .gitmodules.remote .gitmodules 21 $ git diff # make sure no submodules are missed 22 $ git submodule foreach git pull 23 $ git checkout -- .gitmodules 24 $ git commit -am "update submodules" 25 $ git subtrac update 26 $ git push origin master master.trac 27 28 ... and update this README when some of the steps turn out to be 29 wrong/misplaced.