1. Go to this page and download the library: Download se7enxweb/git_manager 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/ */
bash
# Full site backup (DB + var + site files)
php extension/git_manager/bin/php/backup-create.php fullsite -d "Before upgrade"
# DB + files
php extension/git_manager/bin/php/backup-create.php full -d "Daily backup"
# Database only
php extension/git_manager/bin/php/backup-create.php db
# Files only
php extension/git_manager/bin/php/backup-create.php var
# With encryption
php extension/git_manager/bin/php/backup-create.php full -e -p "yourPassphrase" -d "Encrypted"