Skip to content

Instantly share code, notes, and snippets.

@jehanalvani
Last active August 5, 2020 16:57
Show Gist options
  • Save jehanalvani/01f5b6fecbaf60649e1b761220a52548 to your computer and use it in GitHub Desktop.
Save jehanalvani/01f5b6fecbaf60649e1b761220a52548 to your computer and use it in GitHub Desktop.
git clone --bare https://github.com/jehanalvani/dotfiles $HOME/.config
function config {
/usr/bin/git --git-dir=$HOME/.config/ --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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment