I'm having an issue where when I run
git svn rebase
or
git svn rebase -l
nothing happens. However,
git svn fetch
brings down new revisions successfully. This started happening when I used 'gitk' to revert my working copy to a previous revision, then accidentally ran "git reset --hard HEAD" without switching back over to my master branch. Any ideas on how to fix this without re-cloning?
EDIT
'git status' output
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# several untracked files
nothing added to commit but untracked files present (use "git add" to track)
'git branch -avv' shows all of my local and remote branches available to me. There is a lot of output, so what exactly should I be looking for?
It is worthy to note that I can fetch new revisions from another branch, it seems that my master branch is what is screwed up.