From: Silvio Rhatto Date: Mon, 7 Apr 2014 15:07:50 +0000 (-0300) Subject: Sandbox: verbosity and minor fix X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=9c61dcd74f8acc1694b89f34fd3aea4781263a19;p=scripts.git Sandbox: verbosity and minor fix --- diff --git a/sandbox b/sandbox index 8cce1e9..41093ba 100755 --- a/sandbox +++ b/sandbox @@ -32,11 +32,16 @@ else git commit -m "Initial import" if which git-hooks &> /dev/null; then + echo "" + echo "Installing hooks..." git hooks --install fi + git branch develop + if [ -e "/usr/lib/git-core/git-flow" ]; then - git branch develop + echo "" + echo "Setting up git-flow..." git flow init -d fi ) @@ -44,9 +49,10 @@ fi # Vagrant integration ( + echo "" + echo "Setting up vagrant integration..." cd $CODE/$PROJECT - git branch dev - git checkout dev + git checkout develop echo '.vagrant' >> .gitignore git commit -a -m "Dev branch with vagrant support" @@ -57,4 +63,4 @@ fi ) # Teardown -echo "Please review and commit your new project :)" +echo "Welcome to your new project :)"