#!/bin/sh # Dotfiles on Git # Instructions here https://news.ycombinator.com/item?id=11070797 # https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/ h() { git --git-dir="$HOME/.local/share/hexagons/" --work-tree="$HOME" "$@"; } case $1 in *) h "$@" ;; esac