1

I have a directory called bigdeal in revison that I have deleted in revision 4. Now, I want to check it out that directory but svn fails.

[root@localhost ~]# svn ls -r 3  https://******/svn/bigdeal2013/
bigdeal/
branches/
readme.textile
tags/
trunk/
[root@localhost ~]# svn co -r 3  https://***/svn/bigdeal2013/bigdeal/
svn: E160013: '/svn/bigdeal2013/!svn/rvr/4/bigdeal' path not found
[root@localhost ~]# 
thekbb
  • 7,668
  • 1
  • 36
  • 61
lemahdois
  • 77
  • 3
  • 11
  • Your answer is below. I wanted to point out that things may get odd having the big deal directory at the top level with branches, tags and trunk. Perhaps bigdeal should be it's own project? The redbook has good documentation: http://svnbook.red-bean.com/en/1.5/svn.tour.importing.html as well as many questions/answers on this site. Also, it hurts my soul to see you working as root. – thekbb Aug 03 '13 at 14:08
  • possible duplicate of [How to check out a deleted project from an SVN on the command line](http://stackoverflow.com/questions/15875856/how-to-check-out-a-deleted-project-from-an-svn-on-the-command-line) – n611x007 Apr 21 '15 at 13:54

1 Answers1

2

You want to use the peg revision: svn co https://**/svn/bigdeal2013/bigdeal@3 See Alroc's answer to this question

Community
  • 1
  • 1
thekbb
  • 7,668
  • 1
  • 36
  • 61