Last active
October 26, 2016 12:01
-
-
Save Arfey/a07ee02be72632a681c4392288114a20 to your computer and use it in GitHub Desktop.
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