2017-12-26 18:08:27 -06:00
|
|
|
#!/usr/bin/env bash
|
2018-01-04 21:18:41 -06:00
|
|
|
tempfolder="/tmp/dots$(uuidgen)"
|
2018-01-17 12:16:19 -06:00
|
|
|
git clone --recursive --separate-git-dir="$HOME/.dotfiles" https://github.com/rehashedsalt/home.git $tempfolder
|
2018-01-04 21:18:41 -06:00
|
|
|
rsync -rvl --exclude ".git" $tempfolder/ $HOME/
|
|
|
|
rm -r $tempfolder
|
2017-12-26 18:08:27 -06:00
|
|
|
git submodule update --init --recursive --git-dir="$HOME/.dotfiles" --work-tree="$HOME" $HOME/
|