Created
August 21, 2014 15:33
-
-
Save FredKSchott/e81669df4c580867dd0a to your computer and use it in GitHub Desktop.
Getting Recently Changed Files - ShellJS Recipes - http://shelljs-recipes.tumblr.com/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// dependencies: a git repo | |
var CHANGED_FILES = exec('git diff --name-only master..HEAD').output.replace(/\n/g,' '); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment