Skip to content

Instantly share code, notes, and snippets.

@inky
Created April 23, 2010 21:26
Show Gist options
  • Save inky/377210 to your computer and use it in GitHub Desktop.
Save inky/377210 to your computer and use it in GitHub Desktop.
cd ~/Music/GarageBand && git init
inky@xenith ~/Music/GarageBand [master]
$ cat .gitignore
Output.aif
*.mp3
*.flac
inky@xenith ~/Music/GarageBand [master]
$ du -sh
1.3G .
inky@xenith ~/Music/GarageBand [master]
$ du -sh .git
60M .git
inky@xenith ~/Music/GarageBand [master]
$
#!/bin/bash
git=/usr/local/bin/git
# ...
cd $HOME/Music/GarageBand && $git commit -a -m "`date`" >/dev/null
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment