Create pull requests

0
I am wondering if it is possible to create a pull requests or a similiar process within Mendix to have a branch reviewed first before it is merged into the mainline?
asked
1 answers
2

Hi Karl,

     In Mendix, you can’t create pull requests directly, but you can use external tools like GitHub or GitLab to review changes before merging.

  1. Create a Branch: In Mendix Studio Pro, create a branch for your changes.
  2. Make Changes: Work on your branch and commit your changes.
  3. Push to Git: Push your branch to your Git repository (e.g., GitHub, GitLab).
  4. Open a Pull Request: Use your Git platform to create a pull request for the branch.
  5. Review and Approve: Team members review the changes in the pull request and approve it.
  6. Merge: After approval, merge the branch into the mainline using Git.
  7. Sync Back: Open the mainline in Mendix Studio Pro to get the updated changes.

This process ensures that changes are reviewed before being merged into the mainline.

answered