Skip to content

Instantly share code, notes, and snippets.

@billkeller
Forked from subtleGradient/git-transmit
Created May 15, 2012 11:52
Show Gist options
  • Save billkeller/2701164 to your computer and use it in GitHub Desktop.
Save billkeller/2701164 to your computer and use it in GitHub Desktop.
git-transmit opens your recently modified files using Panic's Transmit.app DockSend
#!/usr/bin/env bash
# author: Thomas Aylott SubtleGradient.com
echo "Transmitting"
for i in `git log -${1:-1} $2 --name-only|grep -E '^[^ ]+$'|sort|uniq`; do
if [[ -e $i ]]; then
echo " $i"
open -a Transmit $i
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment