nonphoto / config

My macOS environment using a bare git repository.

Home Page:https://www.atlassian.com/git/tutorials/dotfiles

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

config

My macOS environment using a bare git repository, using the method described here: https://www.atlassian.com/git/tutorials/dotfiles

Remember to do this first if you need to authenticate with Github: https://help.github.com/en/articles/set-up-git

git clone --bare https://bitbucket.org/durdn/cfg.git $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

About

My macOS environment using a bare git repository.

https://www.atlassian.com/git/tutorials/dotfiles


Languages

Language:JavaScript 68.5%Language:Shell 31.5%