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
@adamyeats-zz
Copy link

Hey Harry and Jamie, great work on this script and the libraries inside.

Worth noting are the install steps (for the newbies out there). Here are the steps I followed to install:

  1. Open Terminal and type vim /usr/bin/new-project
  2. Enter Insert Mode (press the 'i' key) and copy and paste the contents of the Gist inside the file
  3. Exit Vim and save by pressing Esc and typing :wq
  4. Enter into Terminal chmod 755 /usr/bin/new-project to make the script executable
  5. Optional: If you don't know if /usr/bin is in your $PATH, type into Terminal: echo 'export PATH=/usr/bin:$PATH' >> ~/.bash_profile
  6. Restart your Terminal session

Hope this helps someone!

@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