Skip to content

Instantly share code, notes, and snippets.

@Layzie
Created March 6, 2013 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Layzie/5099849 to your computer and use it in GitHub Desktop.
Save Layzie/5099849 to your computer and use it in GitHub Desktop.
setting.
#!/bin/sh
echo "### make .grunt-init directory ###"
mkdir $HOME/.grunt-init
echo "### clone grunt-init-commonjs ###"
git clone git@github.com:gruntjs/grunt-init-commonjs.git ~/.grunt-init/commonjs
echo "### clone grunt-init-gruntfile ###"
git clone git@github.com:gruntjs/grunt-init-gruntfile.git ~/.grunt-init/gruntfile
echo "### clone grunt-init-gruntplugin ###"
git clone git@github.com:gruntjs/grunt-init-gruntplugin.git ~/.grunt-init/gruntplugin
echo "### clone grunt-init-jquery ###"
git clone git@github.com:gruntjs/grunt-init-jquery.git ~/.grunt-init/jquery
echo "### clone grunt-init-node ###"
git clone git@github.com:gruntjs/grunt-init-node.git ~/.grunt-init/node
echo "### Finish ###"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment