The thing is that on a time period of 4 weeks I've developed a project on two different locations. At this point I have two different directories on my HDD, each of them containing the .git folder with all the commits.
On folderOne I have something like that:
A - B - C - D - E - F - G
On folderTwo I have the following commits:
A - B - X - Y - Z
What I need is the following:
A - B - X - Y - Z - C - D - E - F - G
At this point I know that I have to move the head from forlderOne to stage B
git br gStage # save the G stage into a branch
git reset --hard HEAD~5 # move master on stage B
Now, my intention is to copy/paste the content from the folderTwo into the folderOne but I know this is not the right way.
Can you tell me how can I get the A - B - X .. - C .. G.
also please feel free to critique my logic.