Skip to content

Instantly share code, notes, and snippets.

@iHiD
Forked from consti/post-commit
Created July 30, 2012 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iHiD/3207743 to your computer and use it in GitHub Desktop.
Save iHiD/3207743 to your computer and use it in GitHub Desktop.
Take a photo of you, whenever you make a commit
#!/bin/sh
#
# Take a photo of you, whenever you make a commit
#
# This is an improved version of Víctor Martínez original post:
# http://coderwall.com/p/xlatfq
#
# Improvements:
# * This is non-blocking (you dont have to wait for your image to be taken)
# * It's plug-and-play (and creates the required folder)
# * We include the repository name (or the folder name of the repository to be exact)
# * It's not requiring ruby to run (it just uses bash)
#
#
# > brew install imagesnap
# Save this file as ~/.git_template/hooks/post-commit
# then do:
# > chmod +x ~/.git_template/hooks/post-commit
# > git config --global init.templatedir '~/.git_template'
#
# this will add the post-commit to all new repositories.
# To add to an existing one, run
# > git init
# in the repository.
#
# Want to create a cool video? Use this to assemble the pictures:
# http://www.dayofthenewdan.com/projects/tlassemble
forked_image() {
mkdir -p ~/.git_shots
imagesnap -q -w 3 ~/.git_shots/$(date +%s)_$(basename $PWD).jpg &
}
forked_image &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment