-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
git.commit
results in stdout maxBuffer exceeded
#68
Comments
It is a node It can be changed in |
Where and how can i change this limitation in IMHO it is a known fact that the buffer size of http://www.hacksparrow.com/difference-between-spawn-and-exec-of-node-js-child_process.html puts it well:
Any reason to use |
PR Welcome. |
So i researched a bit into this, and apart from the fact that That said, |
@loveencounterflow was |
I'll add the alteration if it is determined that the Infinity will fix it. |
Indeed, gulp.task('commit', function () {
gulp.src('src/')
.pipe(git.add({ args: '--all', maxBuffer: Infinity }))
.pipe(git.commit('auto-generated commit', { maxBuffer: Infinity }));
}); |
In my gulpfile I have
When i do
gulp git-add-all && gulp git-commit
i'm getting
Is this a
gulp-git
error or am i doing something wrong?The text was updated successfully, but these errors were encountered: