Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 759 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (16 loc) · 759 Bytes

Contributing

LTS branch

DDE supports a two development branches

  • master: cutting edge DDE development. The latest releases are created from this branch.
  • lts: long term stability branch. Stable and well understood versions of DDE will be maintained on this branch.

The lts branch will periodically get bug fixes but not new features.

When updating the lts branch to match the current state of master, use the following procedure.

git fetch # update local repo
git check lts
git reset --hard origin/master # move lts to match origin/master
git push -f # push up the change
git checkout master
git version major # bump the major version of master so thats lts and master can diverge once again
git push && git push --tags