After doing git svn init -s <url to repo>
, git remote
doesn't list any remotes. Why?
Asked
Active
Viewed 3,222 times
23

John Bachir
- 22,495
- 29
- 154
- 227
1 Answers
25
Because a subversion "remote" is not a real git remote. Try git svn info
to see the remote information for the subversion repository.

richq
- 55,548
- 20
- 150
- 144
-
ah ha. that is useful. the main problem i'm try to solve is described here, maybe you have something to add: http://stackoverflow.com/questions/4168411/how-does-git-svn-know-which-branch-to-dcommit-to – John Bachir Nov 15 '10 at 18:39