g:
#!/usr/bin/env bash

# g: tiny git wrapper

if [[ $# -eq 0 ]]; then
	git status
else
	git "$@"
fi