Skip to content

Instantly share code, notes, and snippets.

@kavanagh
Last active July 8, 2016 09:21
Show Gist options
  • Save kavanagh/0c197931d07bc8f434f2e152c91ed4b1 to your computer and use it in GitHub Desktop.
Save kavanagh/0c197931d07bc8f434f2e152c91ed4b1 to your computer and use it in GitHub Desktop.
#!/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://git@github.com/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