This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2018-07-17 10:33:31 -04:00
|
|
|
# Installation
|
2018-07-17 10:26:40 -04:00
|
|
|
|
|
|
|
git clone --bare git@github.com:penguincoder/dotfiles.git
|
|
|
|
function config {
|
2018-07-20 11:24:54 -04:00
|
|
|
/usr/bin/git --git-dir=$HOME/dotfiles.git/ --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-20 11:25:51 -04:00
|
|
|
config push --set-upstream origin master
|
2018-07-20 16:50:18 -04:00
|
|
|
config submodule init
|
|
|
|
config submodule update
|
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/
|