Skip to content

Instantly share code, notes, and snippets.

@csswizardry
Created November 6, 2012 16:32
Show Gist options
  • Save csswizardry/4025838 to your computer and use it in GitHub Desktop.
Save csswizardry/4025838 to your computer and use it in GitHub Desktop.
Create a full new project out of my vanilla and inuit.css projects
#!/bin/bash
# Add `new-project` to your PATH.
# To create a new project in a directory called `foo`:
# $ new-project foo
git clone [email protected]:csswizardry/vanilla.git $1
cd $1
rm -rf .git
rm -rf css
git clone [email protected]:csswizardry/inuit.css.git css
cd css
rm -rf .git
cd ..
git init
read -p "Open $1 in Finder? " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
open .
echo ""
fi
@JamieMason
Copy link

good point, thanks a lot @adamyeats

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment