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 6b5907e6ea update instructions and aliases 2018-07-20 11:24:54 -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 update instructions and aliases 2018-07-20 11:24:54 -04:00
.bash_profile my dotfiles 2018-07-17 09:48:02 -04:00
.bashrc update instructions and aliases 2018-07-20 11:24:54 -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 update instructions and aliases 2018-07-20 11:24:54 -04:00

README.md

Installation

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