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 c5199edbd9 attribute source 2018-07-17 10:32:56 -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.md attribute source 2018-07-17 10:32:56 -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/