mmp / pbrt-v3

Source code for pbrt, the renderer described in the third edition of "Physically Based Rendering: From Theory To Implementation", by Matt Pharr, Wenzel Jakob, and Greg Humphreys.
http://pbrt.org
BSD 2-Clause "Simplified" License
4.86k stars 1.18k forks source link

Git repository and CDN does not work #317

Closed zoack closed 2 years ago

zoack commented 2 years ago

Hi, I am trying to download the scene repository and is offline: git clone git://git.pbrt.org/pbrt-v3-scenes imagen

Downloading the tar from the CDN and starting the project does not seem to work either: http://storage.googleapis.com/pbrt/pbrt-scenes.git.tar.gz git checkout The output of the checkout command: checkout_output.txt

mmp commented 2 years ago

The git.pbrt.org site is now back up and accepting git connections--sorry for the bother.

On the git checkout, it looks like you're missing the '.' argument--it should be:

$ git checkout .
zoack commented 2 years ago

Thanks