-
Notifications
You must be signed in to change notification settings - Fork 40
Update: Pantheon Upstream
BWPanda edited this page Feb 17, 2023
·
1 revision
Instructions to deploy a new Backdrop CMS release tag to the
/backdrop-ops/backdrop-pantheon
upstream.
-
Clone the
backdrop-pantheon
repo to your local dev environmentgit clone [email protected]:backdrop-ops/backdrop-pantheon.git
- Add
/backdrop/backdrop
as a tracked remotegit remote add core [email protected]:backdrop/backdrop.git
-
The resulting
.git/config
should have an entry like this:
[remote "core"]
url = [email protected]:backdrop/backdrop.git
fetch = +refs/heads/*:refs/remotes/core/*
- Change directories to your clone of the
backdrop-ops/backdrop-pantheon
repocd {path/to/backdrop-pantheon}
- Pull down the changes from
backdrop/backdrop
repogit fetch core
- Checkout the master branch of
backdrop-ops/backdrop-pantheon
git checkout master
- Merge the latest Backdrop release tag into
master
- You can list the tags with
git tag -l
- If for example we are releasing version
1.5.1
the command would be:git merge 1.5.1
- You can list the tags with
- Now push to the
backdrop-ops/backdrop-pantheon
repogit push origin master
- The new release of Backdrop CMS is now available to Pantheon users!