Hoping this is not a dup, I didn\'t find any concise information on how to update a git-svn repo. I used git svn clone to import an SVN repo into git. Then, after doing some
Looks like you have uncommitted file changes.
git status # if you see pending changes, you can do multiple things
Stash them and pull latest and revisit them.
git stash git svn rebase git stash pop
git stash
git svn rebase
git stash pop
If changes are intended and u like to commit it.
git add git commit -m '' git svn rebase
git add
git commit -m ''