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@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@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.
"Sahasrabuddhe, Sameer" <Sameer.Sahasrabuddhe@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@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@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@165785
svn log https://llvm.org/svn/llvm-project/llvm/trunk@165785
Everything is working exactly as expected. The
"https://llvm.org/svn/llvm-project/llvm/trunk@165785" line from
git-svn isn't a URL; it's a repository and a revision separated by an
@ sign.
-Eli