Skip to content

Instantly share code, notes, and snippets.

@blackary
Last active May 17, 2019 15:07
Show Gist options
  • Save blackary/554de2a24daf1c746b1caa0c866047a5 to your computer and use it in GitHub Desktop.
Save blackary/554de2a24daf1c746b1caa0c866047a5 to your computer and use it in GitHub Desktop.
git clone --bare https://github.com/blackary/dotfiles2 $HOME/.cfg
function config {
/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME $@
}
mkdir -p .config-backup
config checkout
if [ $? = 0 ]; then
echo "Checked out config.";
else
echo "Backing up pre-existing dot files.";
config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | xargs -I{} mv {} .config-backup/{}
fi;
config checkout
config config status.showUntrackedFiles no
config submodule update --init --recursive && config submodule status
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment