My dotfiles. Period.

slurp 213B

1234567891011121314
  1. #!/bin/bash
  2. #
  3. # Slurp - add everything, slurp into a WIP commit and push
  4. #
  5. test -f .git-slurp-ok || {
  6. echo "you don't want this." >&2
  7. exit 2
  8. }
  9. git add .
  10. git commit -m "WIP slurp $(date -Isec)"
  11. git push