Laravel package to upload git commits to server(s) via (s)ftp.
sarfraznawaz2005/gitup is a Laravel package for laravel package to upload git commits to server(s) via (s)ftp..
It currently has 20 GitHub stars and 37 downloads on Packagist (latest version 1.1.1).
Install it with composer require sarfraznawaz2005/gitup.
Discover more Laravel packages by sarfraznawaz2005
or browse all Laravel packages to compare alternatives.
Last updated
Laravel package to upload git commits to server(s) via (s)ftp.
This package is not fully tested, use it at your own risk!


We have multiple servers eg live, staging, testing, etc and client wanted us to upload task/story # X to staging only or story Y to live only that's when it was hard to track down files worked upon earlier and then upload them selectively; a time consuming process and nuisance so we created this package so that we can easily upload with one click selected stories to asked servers.
git added to PATH envFTP and Zip PHP extensions (both ship with PHP and usually turned on)league/flysystem FTP wrapper used by gitUp. (comes with laravel by default)league/flysystem-sftp Library used by gitUp to upload files via SFTP.Install via composer
composer require sarfraznawaz2005/gitup
For Laravel < 5.5:
Add Service Provider to config/app.php in providers section
Sarfraznawaz2005\GitUp\GitUpServiceProvider::class,
Run php artisan vendor:publish to publish package's config and migration file. You should now have config/gitup.php file published. It will also publish migration file in database/migrations folder.
Run php artisan migrate to create commits table in your database.
Check and update config/gitup.php file to setup config options including S(FTP) server information where you would like to upload.
By default, gitup UI is available at /gitup route.
For selected commits, we extract files out of them and create zip archive along with an script to extract this zip archive. The zip archive and extract script are then uploaded to selected server where extract script extracts the uploaded zip archive. Once the upload process is done, both zip archive and extract script are deleted from the server.
Uploading zip archive along with extract script has huge speed benefits as all committed files get uploaded in one shot as opposed to uploading each committed file individually.
This code is published under the MIT License. This means you can do almost anything with it, as long as the copyright notice and the accompanying license file is left intact.