Skip to content

Instantly share code, notes, and snippets.

@fabwu
Last active September 30, 2023 16:58
Show Gist options
  • Save fabwu/ab6cfdb4c5cfddd15c74124da4e7ac6a to your computer and use it in GitHub Desktop.
Save fabwu/ab6cfdb4c5cfddd15c74124da4e7ac6a to your computer and use it in GitHub Desktop.
dotfiles install script
#!/bin/bash
#
# dotfiles install script
#
# adapted from Nicola Paolucci
#
# https://www.atlassian.com/git/tutorials/dotfiles
REPO=git@github.com:fabwu/dot-files.git
git clone --bare $REPO $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
echo "alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'" >> $HOME/.bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment