Skip to content

Instantly share code, notes, and snippets.

@Arfey
Last active October 26, 2016 12:01
Show Gist options
  • Save Arfey/a07ee02be72632a681c4392288114a20 to your computer and use it in GitHub Desktop.
Save Arfey/a07ee02be72632a681c4392288114a20 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [ $1 ]
then
NAME=$1
else
NAME=$(date +"%d%m%y")
fi
git clone https://github.com/Arfey/start.git $NAME
cd $NAME && rm -rf .git
sh init.sh $NAME
vagrant up
git init
git add -A
git commit -am "Initialization commit"
vagrant ssh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment