Last active
October 26, 2016 12:01
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 | |
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