2018-07-14 14:35:26 -05:00
|
|
|
#!/bin/sh
|
2018-08-12 18:31:34 -05:00
|
|
|
tempfolder="/tmp/dots"
|
2018-07-14 14:35:26 -05:00
|
|
|
gitdir="$HOME/.dotfiles"
|
2018-07-18 21:33:05 -05:00
|
|
|
git clone --recursive --separate-git-dir="$gitdir" git@gitlab.com:rehashedsalt/home.git $tempfolder
|
2018-02-03 00:34:17 -06:00
|
|
|
rsync -rvl --exclude ".git" $tempfolder/ $HOME/
|
|
|
|
rm -r $tempfolder
|
2018-08-12 18:31:34 -05:00
|
|
|
git --git-dir="$gitdir" --work-tree="$HOME" submodule update --init --recursive --remote
|
|
|
|
git --git-dir="$gitdir" --work-tree="$HOME" status.showUntrackedFiles no
|