I want 100% of stash 4aa0f82
below on my master branch
Problem is, stash apply/pop does not apply all the changes. I can resolve some conflicts, but some important stuff that I changed and saved in the stash does not appear in the conflicts (maybe because there was a commit with a detached HEAD in between).
I want 100% of the stash on my branch. it is all there when I do checkout stash@{0}. how do I move that full stashed commit on my branch?
git log --graph --decorate --oneline stash
output:
*-. 6872ac5 (refs/stash) WIP on (no branch): d5da51e
|\ \
| | * 52db257 untracked files on (no branch): d5da51e
| * fb1c947 index on (no branch): d5da51e
|/
* d5da51e bug removed
|\
| * 3096570 index on master: 89f11dd
|/
* 89f11dd (HEAD, master)
git log --graph --decorate --oneline
output:
* 4aa0f82 (HEAD)
|\
| * bb34a5b index on HEAD: d5da51e
|/
* d5da51e
|\
| * 3096570 index on master: 89f11dd
|/
* 89f11dd (master)
4aa0f82
isn't a stash commit, or not anymore it isn't, anyway. It looks like you've been doing your work on checked-out stash commits, regardless, the easiest way to get where you want from here, if I understand this correctly, is going to bebut I'm pretty sure it's the first set you want, with the
d5da51e
changes.