We recently moved our SVN server from one data center to another, and the IP of the server has changed. I used svn switch --relocate old_url new_url
to update my actual working copy, and that was happy.
However, I do most of my work in a local git version of the repository (using git-svn, obviously). After moving the SVN server, I updated the URL for the repo in .git/config
, but when I try to use dcommit
, I receive this error:
Unable to determine upstream SVN information from HEAD history.
Perhaps the repository is empty. at /home/me/libexec/git-core/git-svn line 520.
What am I missing?