SVN - how does removing a bin folder cause the src folder to be removed instead?

有些话、适合烂在心里 提交于 2019-12-04 19:34:25

问题


There was a bin folder in version control with a bunch of .class files and other junk that should not be versioned. Could someone please explain to me how the following commit:

529  svn rm --force bin/
530  svn ci -m "Bin should not be under version control."

Leads to the following:

Revision 249
Author:     ndunn
Date:   Mon Jul 26 14:52:14 2010 UTC (62 minutes, 34 seconds ago)
Log Message:    

Bin should not be under version control.

trunk/projname/src/     deleted

I went back through the svn logs as someone reminded me that this had happened before - sure enough, one two separate occasions developers had attempted to remove the bin folder and instead the src folder completely disappeared.

Any idea what the heck could be going on? This is an Android project that's under version control.


回答1:


I think this post solves the mystery

My problem is that when I start working into the project, the /bin folder is generated by the SDK and a copy of the .svn folder from /src is copied into /bin/.svn, which breaks by subversion structure.

So anyone using Eclipse with Android had better be prepared to have any changes made to the bin folder reflected in src... wow.

Picture solution: alt text http://grab.by/grabs/552e113d8ad854e128dae56cf0a4a775.png




回答2:


I recommend to set svn:ignore property on parent (of src and bin) with value bin to prevent committing bin folder. BTW: In our team 2 persons also deleted src while trying to delete bin - it seems it is Eclipse related problem...



来源:https://stackoverflow.com/questions/3336576/svn-how-does-removing-a-bin-folder-cause-the-src-folder-to-be-removed-instead

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!