Why does `git remote` not list anything on my git-svn repo?

git, git-svn, svn

Solution

Because a subversion "remote" is not a real git remote. Try `git svn info` to see the remote information for the subversion repository.

Problem

After doing `git svn init -s <url to repo>`, `git remote` doesn't list any remotes. Why?

Original source

Related problems