• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

[SOLVED] Objscale git pull problems.

Status
Not open for further replies.

Rochet2

Moderator / Eluna Dev
Can you post the output of the command git log?

Seems you have Eluna and Objscale. The errors seem to be caused at least partly from that.
Try getting the current commit's hash you are on and save it in case things go wrong.

You would need to manually solve the errors marked with these tags in the files:
Code:
<<<<<<< HEAD
// Code you have
=======
// Code the merged repo has
>>>>>>>

For the eluna conflicts it might be better to select the one with Eluna code (the first code block). (unsure if both work or both fail)
For the conflicts about code about modelids use the second code block.

After that see that there are no more conflicts and commit.
Then pull Eluna and try to solve any new conflicts.

When you want to try revert back to where you were, try using git reset --hard <yoursavedcommithash>
 
Last edited:

Rochet2

Moderator / Eluna Dev
Did you try the stuff I suggested?

Unsure if there are better ways .. but ..
Another way to do this is to abort any merge you made so far (git merge --abort)
Then do
Code:
git checkout -b update

git add -A
git reset --hard Eluna/master

git pull Rochet2/objscale

git checkout master
git merge update
git branch -D update

What this does is basically create a new branch, get the latest Eluna, merge latest objscale with it (and here you should merge any other stuff you use, like transmog, reforging .. whatever).
Then once all those are merged together, it changes back to the original branch and merges the update branch to it and then deletes the update branch.
 

Rochet2

Moderator / Eluna Dev
Everything you do you should do in the source root folder.
What is this "build" folder? Sounds like it is the folder that contains the trinitycore.sln file, which is where you should not be executing commands at.
 
Status
Not open for further replies.
Top