2018-02-03 00:34:17 -06:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
tempfolder="/tmp/dots$(uuidgen)"
|
|
|
|
git clone --recursive --separate-git-dir="$HOME/.dotfiles" https://github.com/rehashedsalt/home.git $tempfolder
|
|
|
|
rsync -rvl --exclude ".git" $tempfolder/ $HOME/
|
|
|
|
rm -r $tempfolder
|
2018-02-08 01:05:50 -06:00
|
|
|
git submodule update --init --recursive --remote --git-dir="$HOME/.dotfiles" --work-tree="$HOME" $HOME/
|