Skip to content

Instantly share code, notes, and snippets.

@mitchellvanw
mitchellvanw / setup_laravel.sh
Created July 14, 2014 20:52
Setup a clean Laravel 4 installation
#!/bin/sh
git clone -o laravel -b develop https://github.com/laravel/laravel.git $1
cd $1
git checkout --orphan master
git add .
git commit -m "Initial commit"