fadion / Maneuver

Easily deploy Laravel projects via FTP or SFTP, using Git for versioning
MIT License
174 stars 26 forks source link

Deploying branches #14

Closed sarbull closed 9 years ago

sarbull commented 9 years ago

Is there a command for deploying a certain branch? Such as

php artisan deploy --branch=feature-1
fadion commented 9 years ago

No branch option, but you can easily do it as:

git checkout feature-1
php artisan deploy