Skip to content

Instantly share code, notes, and snippets.

@Arfey
Last active October 26, 2016 12:01
#!/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