grunt-update-submodules

Updates git submodules


Keywords
git, gruntplugin, submodule, update
License
MIT
Install
npm install grunt-update-submodules@0.4.1

Documentation

Build Status Coverage Status Dependency Status devDependency Status Gittip

NPM

grunt-update-submodules

Grunt task to update git submodules.

Installing

Install and add to dependencies.

npm install grunt-update-submodules --save-dev

Load the task in Gruntfile.js.

task.loadNpmTasks( "grunt-update-submodules" );

Usage

grunt.initConfig({
	"update_submodules": {
		default: {
			options: {
				// default command line parameters will be used: --init --recursive
			}
		},
		withCustomParameters: {
			options: {
				params: "--force" // specifies your own command-line parameters
			}
		},
		withNoParameter: {
			options: {
				params: false // blanks command-line parameters
			}
		}
	}
});

License

Copyright (c) 2012 - 2014 Julian Aubourg Licensed under the MIT license.