I was working in branch "Feature".
So my git tree was:  
                  master
A<--B<--C<--D<--F<--G
            |<--E
                Feature  
I wanted to get all the latest of master while working on Feature branch so I did:
git checkout Feature  
git rebase master  
During the rebase I got a merge conflict in one file and during resolving the conflict manually I did a mistake which I realized later and not before running git rebase --continue
So I ended up with a tree as follows:  
                 master      
A<--B<--C<--D<--F<--G<--E  
                       Feature
Then I realized about my mistake that actually broke the build in E.
I corrected my mistake (not commited yet) and continued my work but I don't want to have 2 commits in Feature that will end up in master and the one of the commits is a bad commit.
Also I would like to end up with a single commit in master branch of my work in Feature.
So if I have:  
                 master      
A<--B<--C<--D<--F<--G<--E<--H  
                           Feature   
How can I combine E and H into one commit so that when I do:
git checkout master  
git rebase feature   
I have only 1 commit in my master? Note: The branch Feature is local and not pushed in case it matters.
 
    