git log -- onefile
reveals this...
d2c2408 - (HEAD, master) yet another fix
5cfc62f - updated web socket for shared blockchain
78bc7b8 - transactions, transaction pool update
b47bf1d - transaction added
d831d08 - added wallet
I need for d831d08
commit to merge into d2c2408
.
But in the process, I need for the previous commit d831d08
to overwrite any and all files that future commit has d2c2408
. Meaning, I want to keep all the future progress that the future commit has but I need to overwrite everything the previous commit has.
What git command do I do this with?