Migration to GitHub

This week, we migrated Git all source code from Bitbucket to GitHub. The Yarra source code can now be found under the Yarra Organization page https://github.com/yarra-framework. The repositories on Bitbucket will continue to exist as backup, but will not be updated anymore. If you are actively working with the Yarra source code, make sure to change the remote location of the repository to GitHub.

This can be done with the following commands:

# Check existing remotes location (should show Bitbucket)
git remote -v

# Change location to GitHub (replace REPO with the actual repository name)
git remote set-url origin https://github.com/yarra-framework/REPO.git

# Validate that the change was successful (should now show GitHub)
git remote -v
Open Chat