Skip to content

Instantly share code, notes, and snippets.

@dotdreaming
Forked from subtleGradient/git-transmit
Created June 19, 2013 19:15
Show Gist options
  • Save dotdreaming/5817111 to your computer and use it in GitHub Desktop.
Save dotdreaming/5817111 to your computer and use it in GitHub Desktop.
#!/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