This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Home
How to do sync with SVN repo at googlecode:
<pre>
git clone <origin>
tweak .git/config to have svn-remote like this (rewriteRoot is important!):
[svn-remote "svn"]
url = https://blacktree-visor.googlecode.com/svn
fetch = trunk:refs/remotes/trunk
rewriteRoot = http://blacktree-visor.googlecode.com/svn
git svn fetch
git checkout -b svnmerger trunk
loop(
git checkout svnmerger
git svn rebase
git merge master
git svn dcommit
)
and you should make sure that you don’t have any “not yet dcommitted” merges when you do the “git svn rebase”
— many thanks to doener@#git







