There was some kind of misunderstanding which resulted in conflict in 100+ files. The conflict is very easy to resolve though. One set of files has:
// In .h files
virtual bool exec();
// in cpp files:
bool SomeClassName::exec() {
And the other set has:
// In .h files
virtual bool work();
// in cpp files:
bool SomeClassName::work() {
I would like to resolve this automatically. Doing it manually would take two hours or more. How can I find and replace work()
to exec()
? Apart from git, I also can use SourceTree and BeyondCompare if it can help my situation.
Note that additional conflict may need manual resolution after this is resolved, so the files must not be automatically marked as resolved.