grunt-git
grunt-git copied to clipboard
Git commands for grunt.
Hello grunt-git developers, I've been using the grunt-git plugin, and I would like to get some clarification on the force option for the `gitadd` task. I've read the documentation, but...
When running the task it fails with the following error: ``` Warning: Log failed to match exepected pattern: { "hash": "60dc76bd83bfaf1a9380683369398863847d51e6", "author": { "name": "foo", "email": "[email protected]" }, "date": "Tue,...
how can I do something like git checkout master git checkout source -- _site ```javascript gitcheckout: { master_gitcheckout: { options: { branch: "master" } }, source_gitcheckout: { options: { branch:...
When I try to push to a branch other than master, I get the following error: ``` Running "gitpush:server-production" (gitpush) task Verifying property gitpush.server-production exists in config...OK File: [no files]...
**use case**: > i have a blank JSON config file for user credentials, and a task that lets them update each entry on `postinstall`. once they've added passwords to this...
Hey Guys, i tried to build my current commit hash into grunt. But it seems that something went wrong. This is my error: ``` Running "gitlog:target" (gitlog) task Warning: Log...
Using this config: ``` grunt.initConfig({ gitcommit: { 'default': { options: { message: 'test', cwd: '../../builds/' }, files: [{ src: ['release.tar'], expand: true, cwd: '../../builds/', }] } } }) ``` It...
I've used the files configurations to include only the files I want to reset, but still resets all the modified files. Is this supported?
It would be nice to have an option to use --follow-tags, instead of pushing twice.