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 5a426a049b fix path 2018-07-17 10:29:44 -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 add dotfiles alias 2018-07-17 10:22:07 -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 fix path 2018-07-17 10:29:44 -04:00

README

* 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