Lukasz Wasylow If you will "project export", then indeed, you will export everything. So a solution would be e.g.:
- Developer 1 is working on some changes in the database, and periodically, he exports only his changes to a branch, let's say branch "feature1."
- Developer2 is working on his changes on the "feature2" branch and exports his changes.
"project export -o OBJECT_NAME"
At the end, their changes are merged:
- feature1 into e.g. branch "version_2.0"
- feature1 into branch "version_2.0"
Then, the privileged user lets call him Release Guy execute the "project stage" command, then "project release" etc.
Does it answer your question? :)