My shell configuration.
This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
Go to file
Andrew Coleman ffb6ff67bb fix path 2018-07-17 17:36:50 -04:00
.vim my dotfiles 2018-07-17 09:48:02 -04:00
bin my dotfiles 2018-07-17 09:48:02 -04:00
.bash_aliases add dotfiles alias 2018-07-17 10:22:07 -04:00
.bash_profile my dotfiles 2018-07-17 09:48:02 -04:00
.bashrc fix path 2018-07-17 17:36:50 -04:00
.gitignore my dotfiles 2018-07-17 09:48:02 -04:00
.gitmodules my dotfiles 2018-07-17 09:48:02 -04:00
.vimrc my dotfiles 2018-07-17 09:48:02 -04:00
LICENSE Initial commit 2018-07-17 09:27:05 -04:00
README.md header 2018-07-17 10:33:31 -04:00

README.md

Installation

git clone --bare git@github.com:penguincoder/dotfiles.git
function config {
  /usr/bin/git --git-dir=$HOME/dotfiles/ --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
config branch --set-upstream-to=origin/master master

Initialization script sourced from Atlassian: https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/