This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2019-07-09 17:01:07 -04:00
|
|
|
# dotfiles
|
|
|
|
|
|
|
|
These are my dotfiles, useful for my own shell configuration and not much else. Installation is easy, just paste this into your terminal.
|
|
|
|
|
|
|
|
#!/bin/sh
|
2021-03-24 11:04:01 -04:00
|
|
|
# Initialization script sourced from Atlassian:
|
|
|
|
# https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/
|
2021-02-08 16:24:38 -05:00
|
|
|
mkdir -p $HOME/dev
|
|
|
|
git clone --bare ssh://git@git.penguincoder.org:2222/penguincoder/dotfiles.git dev/dotfiles.git
|
2021-03-24 11:04:01 -04:00
|
|
|
function dotfiles {
|
|
|
|
git --git-dir=$HOME/dev/dotfiles.git/ --work-tree=$HOME $@
|
2019-07-09 17:01:07 -04:00
|
|
|
}
|
2021-03-24 11:04:01 -04:00
|
|
|
dotfiles checkout
|
2019-07-09 17:01:07 -04:00
|
|
|
if [ $? = 0 ]; then
|
2021-03-24 11:04:01 -04:00
|
|
|
mkdir -p .config-backup
|
2019-07-09 17:01:07 -04:00
|
|
|
echo "Checked out config.";
|
|
|
|
else
|
|
|
|
echo "Backing up pre-existing dot files.";
|
2021-03-24 11:04:01 -04:00
|
|
|
dotfiles checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | xargs -I{} mv {} .config-backup/{}
|
2019-07-09 17:01:07 -04:00
|
|
|
fi;
|
2021-03-24 11:04:01 -04:00
|
|
|
dotfiles checkout
|
|
|
|
dotfiles config status.showUntrackedFiles no
|
|
|
|
dotfiles push --set-upstream origin master
|