On 03/13/2014 09:55 PM, Dnyaneshwar wrote:
> Hi Zivkov,
> Thanks for the help
>
> what you mean
> git checkout <the-branch-where-you-did-the-
> change>
>
> i have one only one branch master in my local machine
>
> and have pushed the changes to remote master
>
> so i have checkout local or remote branch ?
>
> our developers are constantly facing the same issue can you tell me
> causing of this issue
>
The error occurs when you try to submit a change whose parent is not the
latest head of the branch, and the change modifies files that are also
modified in other commits that were merged between your change's parent
and the current head.
To solve this you have to rebase the change, either using the method
mentioned by Sasa, or using the "rebase" button on the UI.
Alternatively, you can try to enable the "Automatically resolve
conflicts" option for the project. This may reduce the occurrence of
the "due to path conflict" error, but is not guaranteed to be able to
solve all merge conflicts.