Christof Krüger <git@xxxxxxxxxxxxxxxxxxx> writes: > Now that you already have cloned the empty repository you can just look at > the remote configuration in it: > > git config --list|grep remote > > You should see something like the following: > > remote.origin.url=user@xxxxxxxxxxx/path/to/repository.git > remote.origin.fetch=+refs/heads/*:refs/remotes/origin/* > > Go to your from-svn repository and add the above configuration, then "git > push origin master". Careful. git svn uses the remotes namespace in a non-std way. Better to locally clone the from-svn repository into a new one, then use "git remote add origin user@xxxxxxxxxxx/path/to/repository.git" to add the remote repository. Then you can safely push the master branch. Andreas. -- Andreas Schwab, schwab@xxxxxxxxxxxxxx GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html