Repository not deleted completely, SVN status gives me exclamation points

1

We're using SVN as a versioning system for a website we're building for school but I have some issues.

One of my colleagues had created a folder that I then tried to delete, but it looks like it was not deleted. And when I do svn status , this appears to me:

!       sengineering
!       sengineering/images
!M      sengineering/images/The_C_Programming_Language_2_ed.png
!M      sengineering/images/W3C®_Icon.svg.png
!M      sengineering/images/cs_go_scene.jpg
!M      sengineering/images/history.png
!M      sengineering/images/lambda.png
!M      sengineering/images/oop.png
!       sengineering/languages
!       sengineering/languages/languages.html
!       sengineering/languages/languages_evolution.html
!       sengineering/languages/most_important_pl.html
!       sengineering/languages/programming_language.html
!       sengineering/multitask.html
!       sengineering/sengineering.html 

sengineering was the folder I tried to delete.

I saw that the exclamation point is related to the fact that I do not have this folder, but how do I make a checkout new the specified folder, or how do I delete it completely? >     

asked by anonymous 04.11.2014 / 16:27

1 answer

1

To delete a SVN directory or commit directory immediately, use the svn delete command by passing the URL folder in the repository instead of passing the local path of the folder. So:

svn delete -m "comentário..." svn://servidor/repo/pasta/pasta_a_deletar

Since the last parameter is the URL, it can have some variations: file:///... or http://dominio... . Use the URL you're used to in your other operations.

    
04.11.2014 / 17:51