Last active
July 8, 2016 09:21
-
-
Save kavanagh/0c197931d07bc8f434f2e152c91ed4b1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/usr/bin/env bash | |
echo "" | |
read -p "Local directory for the project (use lowercase with dashes) : " dir; | |
read -p "(press enter to use the default \"master\") : " branch; | |
git clone -b ${branch:-master} --single-branch ssh://[email protected]/ft-interactive/starter-kit.git $dir && cd $dir && ./configure && npm start -- --open |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment