I'm working with a local repo and there are no upstream repos. I had a single branch 'master' in which HEAD referred to the most recent commit. In an attempt to accomplish something* I did a:
git rebase -i master
which brought up the editor window so I could do my picks and squashes. Uncertain of what to do next, I closed the editor (no changes were made) and was told by git:
Successfully rebased and updated refs/heads/master.
That was the sum total of git's response.
I have two questions here:
First, did anything actually change in my branch and what condition is my branch in now? (I realize that's two questions in 1.)
Second, if there was an impact from this command, how do I undo?