am I doing something wrong?
$ svn checkout http://rietveld.googlecode.com/svn/trunk/ rietveld
svn: Server sent unexpected return value (502 Bad Gateway) in response
to OPTIONS request for 'http://rietveld.googlecode.com/svn/trunk'
I tried it from a different computer and it doesn't work either.
Ondrej
---
marvin:tmp$ svn checkout http://rietveld.googlecode.com/svn/trunk/ rietveld
svn: PROPFIND request failed on '/svn/trunk'
svn: PROPFIND of '/svn/trunk': 502 Bad Gateway (http://rietveld.googlecode.com)
---
Actually, I am seeing same failures with other googlecode projects too
so the problem may not be Rietveld specific.
Evan, don't you by accident have a git repo of rietveld somewhere? :)
Now I need to wait for google to fix the servers.
Ondrej
--
--Guido van Rossum (home page: http://www.python.org/~guido/)
Feel free to clone from
http://neugierig.org/software/git/?r=rietveld
I (think) I've set up the "svn" branch visible there to track svn
trunk. The other branches I may add or delete as I go, so don't rely
on them.
BTW, a neat git trick I only learned recently: Once you have my clone,
you can use it to use my cloned-from-git branch to bootstrap a real
git-svn branch:
# set up a git-svn branch
git update-ref refs/remotes/git-svn refs/remotes/origin/svn
# initialize git-svn
git svn init http://rietveld.googlecode.com/svn/trunk
Now "git svn fetch" will fetch further updates to Rietveld. This
avoids needing to clone all of Rietveld's history yourself, which is
quite slow already and unreliable given the googlecode servers'
flakiness.
$ git clone git://neugierig.org/rietveld.git
Initialized empty Git repository in /home/ondra/repos/rietveld/.git/
remote: Generating pack...
remote: Done counting 445 objects.
remote: Deltifying 445 objects...
remote: 100% (445/445) done
remote: Total 445 (delta 305), reused 421 (delta 287)
Receiving objects: 100% (445/445), 182.42 KiB | 94 KiB/s, done.
Resolving deltas: 100% (305/305), done.
warning: remote HEAD refers to nonexistent ref, unable to checkout.
Is the problem on my side?
> BTW, a neat git trick I only learned recently: Once you have my clone,
> you can use it to use my cloned-from-git branch to bootstrap a real
> git-svn branch:
> # set up a git-svn branch
> git update-ref refs/remotes/git-svn refs/remotes/origin/svn
> # initialize git-svn
> git svn init http://rietveld.googlecode.com/svn/trunk
> Now "git svn fetch" will fetch further updates to Rietveld. This
> avoids needing to clone all of Rietveld's history yourself, which is
> quite slow already and unreliable given the googlecode servers'
> flakiness.
Exactly! That's the point of distributed VCS, you have everything you
need to work on the project. And git svn rocks.
Ondrej
Sorry, I got too fancy with my clone. I think it works now; please try again.
This worked, thanks!
Ondrej