Table of Contents

Git

Workflow

This repo (tilde.town) is a local mirror of the tilde.town home directory plus homelab configs. Changes are authored locally and pushed to both tilde.town (via rsync) and GitHub.

Aliases

alias gs='git status'
alias ga='git add'
alias gc='git commit'
alias gp='git push'
alias gl='git log --oneline'
alias gd='git diff'

Sync to tilde.town

./bin/sync-to-tilde.sh
# Runs: rsync -avz <excludes> . tilde.town:~

Excludes: .ssh, mbox, .DS_Store, node_modules, _site, .git

See Also