Created
November 6, 2012 16:32
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
vim /usr/bin/new-project
:wq
chmod 755 /usr/bin/new-project
to make the script executableecho 'export PATH=/usr/bin:$PATH' >> ~/.bash_profile
Hope this helps someone!