Replies: 5 comments
-
Hi @jimmysafe, did you clone the The expected behavior is that when merging the Here's a workflow to clarify:
The workflow should be approximately as follows:
|
Beta Was this translation helpful? Give feedback.
-
Hi @andrii-bodnar thanks for the clarification. So basically you have to clone the The reason why we did not clone the main branch in the first place is because the CLI and the APIv2 does not have an endpoint to check che conflicts when merging. I can see this endpoint available on your frontend, but not in the API: Is there any chance to get this endpoint added to the API? It would solve so many issues for us, as we are trying to automate a custom process with the crowdin api. |
Beta Was this translation helpful? Give feedback.
-
@jimmysafe, yes, I have already passed it on to the team to consider making this endpoint public. By the way, we will also be adding the |
Beta Was this translation helpful? Give feedback.
-
That is amazing! thanks! With the conflicts endpoint it would also be great to have and endpoint to confirm merge conflicts selection as you do on your frontend, so the whole picture is complete :) Btw thanks for the support, really appreciate <3 |
Beta Was this translation helpful? Give feedback.
-
@andrii-bodnar hi! is there any update regarding the confirm merge endpoint? any ETA? |
Beta Was this translation helpful? Give feedback.
-
Describe the bug
We are using String Based Projects.
We have a
main
branch which contains all the strings available in production.Then for every feature we develop we create a separate Crowdin branch containing all the strings for that specific feature but it could also include strings already present in main which have been modified.
To explain this lets say we have a
main
and afeat
crowdin branches.we have a string in
main
:We also have a string in
feat
(this is the string that counts, and that we have specifically modified)Now, whenever we merge the
feat
branch intomain
branch we see that both strings with same identifier have been added to main!So we get both strings
Hello Bud!
andHello
with same identifierlogin.hello
.Is this an expected behaviour?
We would like to keep only the new string contained in
feat
branch when we merge intomain
. We don't expect to see the old string.To Reproduce
Steps to reproduce the behavior:
Expected behavior
When merging branch 2 into branch 1 all OLD strings with duplicate identifier should be removed in favour of new one.
Screenshots
Beta Was this translation helpful? Give feedback.
All reactions