Skip to content

Commit

Permalink
Merge pull request #10 from keymetrics/cut_output
Browse files Browse the repository at this point in the history
Commit history is now limited to 200 entries
  • Loading branch information
jshkurti committed May 20, 2015
2 parents 0725b0a + b4a6721 commit 9242d3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/git.js
Expand Up @@ -89,7 +89,7 @@ git.parse = function(folder, cb) {
if (data.branch_exists_on_remote)
prefix = data.remote + '/';

exec("cd '"+folder+"';LC_ALL=en_US.UTF-8 git log "+ prefix + data.branch +" --pretty=oneline",
exec("cd '"+folder+"';LC_ALL=en_US.UTF-8 git log "+ prefix + data.branch +" --pretty=oneline -n 200",
{timeout: TIMEOUT},
function(err, stdout, stderr) {
if(err !== null)
Expand Down

0 comments on commit 9242d3e

Please sign in to comment.