I want to disable the option merging in my Eclipse Git, to stop merging my code unknowingly?
Because my system is very slow, sometimes I am trying to trigger for synchronize but unfortunately merge tool has been triggered.
I want to disable the option merging in my Eclipse Git, to stop merging my code unknowingly?
Because my system is very slow, sometimes I am trying to trigger for synchronize but unfortunately merge tool has been triggered.
You could simply fetch instead of pulling: that will synchronize the remote tracking branches of your repo, but won't merge anything.
See also "What does exactly fetch does in eclipse git (EGIT)?".