This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues/pull-requests.
bare-dotfiles/README.md

20 lines
707 B
Markdown
Raw Normal View History

2018-07-17 10:26:40 -04:00
* Installation
git clone --bare git@github.com:penguincoder/dotfiles.git
function config {
2018-07-17 10:29:44 -04:00
/usr/bin/git --git-dir=$HOME/dotfiles/ --work-tree=$HOME $@
2018-07-17 10:26:40 -04:00
}
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
2018-07-17 10:31:27 -04:00
config branch --set-upstream-to=origin/master master
2018-07-17 10:32:56 -04:00
Initialization script sourced from Atlassian: https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/