Hi, > Then I created an account in a forge (like github or so...), where I > had to clone an empty GIT repository in order to begin to work. > I dont have admin access to the forge, so no "scp" to the repo > hosting possible. Why did you have to clone an empty repository? It should be enough to add the correct remote config directly in your "from-svn" repository and just push it. > Now, I have 2 "local" repos: > - the one from the SVN > - the empty one from the forge 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". Good luck! Regards, Chris -- 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