Launch Backdrop CMS on Drupal Forge. If you launch with a cloud development environment, you can use it to contribute to Backdrop CMS Quickstart.
-
Fork the Backdrop CMS Quickstart repository.
-
After launching Backdrop CMS, open DevPanel VS Code then open terminal and run the following commands:
cd /var/www/html/ git remote add <github_username> https://<github_username>:<github_personal_token>@github.com/<github_username>/<github_repo>It is best practice to generate a GitHub personal access token rather than to use your GitHub password for
<github_personal_token>. If you use a classic access token, it needs therepopermission. If you use a fine-grained access token, it needs read and write access to repository contents. -
Create a branch for your issue:
git checkout -b <issue-branch> -
When you have committed your work, push the branch to your fork:
git push -u <github_username> HEAD -
Create a GitHub pull request from your fork back to the official Backdrop CMS Quickstart repository.