Sahasrabuddhe, Sameer
2012-Oct-17 11:20 UTC
[LLVMdev] accesing svn URLs mentioned in git commit messages
Hi, git messages for the LLVM source quote the equivalent SVN revisions with a line like this: git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk at 165785 91177308-0d34-0410-b5e6-96231b3b80d8 But the URL doesn't work; instead we get the following error message: The requested URL /svn/llvm-project/llvm/trunk at 165785 was not found on this server. The tip of the trunk is visible just fine: https://llvm.org/svn/llvm-project/llvm/trunk/ Is the server setup broken, or is the syntax for specific revisions broken? Sameer. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20121017/caf66da1/attachment.html>
Matthieu Moy
2012-Oct-17 12:04 UTC
[LLVMdev] accesing svn URLs mentioned in git commit messages
"Sahasrabuddhe, Sameer" <Sameer.Sahasrabuddhe at amd.com> writes:> Hi, > > git messages for the LLVM source quote the equivalent SVN revisions with a line like this: > > git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk at 165785 91177308-0d34-0410-b5e6-96231b3b80d8 > > But the URL doesn't work; instead we get the following error message: > > The requested URL /svn/llvm-project/llvm/trunk at 165785 was not found on this server.I guess you tried to access it with a web browser. Try using SVN instead: svn ls https://llvm.org/svn/llvm-project/llvm/trunk at 165785 svn log https://llvm.org/svn/llvm-project/llvm/trunk at 165785 -- Matthieu Moy http://www-verimag.imag.fr/~moy/
Eli Friedman
2012-Oct-17 12:04 UTC
[LLVMdev] accesing svn URLs mentioned in git commit messages
On Wed, Oct 17, 2012 at 4:20 AM, Sahasrabuddhe, Sameer <Sameer.Sahasrabuddhe at amd.com> wrote:> Hi, > > git messages for the LLVM source quote the equivalent SVN revisions with a > line like this: > > git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk at 165785 > 91177308-0d34-0410-b5e6-96231b3b80d8 > > But the URL doesn't work; instead we get the following error message: > > The requested URL /svn/llvm-project/llvm/trunk at 165785 was not found on this > server. > > The tip of the trunk is visible just fine: > > https://llvm.org/svn/llvm-project/llvm/trunk/ > > Is the server setup broken, or is the syntax for specific revisions broken?Everything is working exactly as expected. The "https://llvm.org/svn/llvm-project/llvm/trunk at 165785" line from git-svn isn't a URL; it's a repository and a revision separated by an @ sign. -Eli