1
We’re using SVN as versioning system for a website we’re building for the school but I have some problems.
A colleague of mine had created a folder that I later tried to delete, but it doesn’t seem to be 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 mark is related to the fact that I don’t have this folder, but how do I make a checkout
again the specific folder, or how do I delete it completely?
The
svn status
is saying that the folder exists in the repository but does not exist on your machine as you have deleted it from your desktop. In addition to deleting the folder locally, you also need commit this removal.– Caffé
It looks like you have pending commit deletions and additions. You have other local changes that you intend to commit in addition to this deletion?
– Caffé
I ask about your intention: do you want to commit more than one exclusion? If not, try downloading the entire repository to another folder and deleting it by URL, which commits the changes immediately. Then (if it all worked out) you redo your original workbook (delete and download all over again) and ball forward.
– Caffé
The
revert
is for you to give up local changes; that is, you don’t ever want to send it to the server. Unrelated to irreversibly changing the repository on the server.– Caffé