Feature - poly diff for projects #399
-
|
Hey, maybe I missed some way to |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Yes, you can do that! It relies on git and setting tags. Example: The patterns are configurable in the You make changes in a feature branch. For a visual diff, and to see which projects are affected, you can run: poly diffTo use it in an automated way, such as during CI/CD, you can use the poly diff --shortIn this example recording, the main branch of the repo has a tag called |
Beta Was this translation helpful? Give feedback.

Yes, you can do that! It relies on git and setting tags.
Example:
Each time something is merged to your main branch, a tag is set. I use this pattern, as an example: stable-n
The patterns are configurable in the
workspace.tomlfile.You make changes in a feature branch. For a visual diff, and to see which projects are affected, you can run:
To use it in an automated way, such as during CI/CD, you can use the
--shortoption for a more programmatic-friendly output (a comma-separated list of the project names):In this example recording, the main branch of the repo has a tag called
stable-4. The diff is comparing the changes in the current feature branch with that…