PHP code example of ahmedessam / laravel-git-toolkit

1. Go to this page and download the library: Download ahmedessam/laravel-git-toolkit library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ahmedessam / laravel-git-toolkit example snippets

bash
php artisan vendor:publish --tag=git-toolkit-config
bash
php artisan git:flow
bash
php artisan git push
bash
php artisan git branch
bash
php artisan git pull
bash
php artisan git merge --merge=<source-branch> --branch=<target-branch>
bash
php artisan git delete-branch
bash
php artisan git push-branch
bash
php artisan git fetch
bash
php artisan git rebase
bash
php artisan git reset --commit=<commit-hash>