- Edited
Is is possible to upgrade from 1.7 to 1.8 via git? I know they are separate repos on Github but I was thinking I could just add the new repo URL and pull. Will this work?
Is is possible to upgrade from 1.7 to 1.8 via git? I know they are separate repos on Github but I was thinking I could just add the new repo URL and pull. Will this work?
Yeah, add a remote for the 1.8 repogit remote add osticket-1.8 https://github.com/osTicket/osTicket-1.8then fetch from the new remotegit fetch osticket-1.8then you can switch to the 1.8 master branch (or the develop if you dare)git checkout osticket-1.8/masterYou may need to name the branch in your local repogit checkout -b master-1.8alternatively you could merge osticket-1.8 onto your repo (which may result in merge conflicts, beware). This process would be required if you are going to rebase your customizations onto 1.8git merge osticket-1.8/masterIf you are using the deploy script to manage the installation on your web server, you would then deploy 1.8 to stage the upgrade. Use deploy --help for usage and optionsphp setup/cli/manage.php deploy -v /var/www/osticketCheers,
Awesome, worked great, thanks!