This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
| <?php | |
| // app/config/assets_version.php | |
| $container->loadFromExtension('framework', array( | |
| 'templating' => array( | |
| 'engines' => array('twig'), | |
| 'assets_version' => exec('git rev-parse --short HEAD'), | |
| ), | |
| )); |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this: