I’m trying to update to an old revision, but I’m getting:
$ svn update -r126
svn: Target path does not exist
A simple update works fine. Also, update to revision 126 works on other computers, just in mine not.
Any idea what can be wrong here?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This could mean that you’re working in a directory that does not exist in revision 126. Try
to find out the server URL for the path you’re working in, then you can try either
to check that the path existed in revision 126. Here
@126is a peg revision – it’s instructing SVN to use that path in the filesystem tree from revision 126 as opposed to the current directory as it existed in revision 126.Chances are this all means that you’re actually working on a branch that didn’t exist in revision 126. You may need to
svn switchback to your trunk path where revision 126 works, then update.