(I'm afraid my search-fu is lacking, I didn't find answers to this specific scenario)
So, I have a git repo that looks like this:
A a'', b''
|
/
M a',b'
|
|
|
o a, b
|
M is a current master
, and A is a topic branch. o
is an old commit, a,b, etc
refer to the states of two particular set of files in the repo.
I've realized that I want to move master
back in time to the commit o
(files a
), except for some particular files (b''
) created / modified in topic branch A
. In other words, I want the new master to look like this:
M' a, b''
|
What would be the best way to do this?
(The one option I could do would be copy the files b
to somewhere outside of the repo, roll the master back in time, and then just re-add those files like they were totally new commits. However, that doesn't sound like a very 'git' way of doing things.)
I also have an remote repo. I can rebase
and push --force
things, but I'd rather not; while not critical, I'd like the history to look 'nice' and pullable.
First, it's generally bad to change history on a "published" branch such as master. Second, you're not working with file-sets, but change sets. Instead of changing history, you can revert all the commits between 'o' and 'M', and then copy the contents of
b''
over to your "clean" master.