Как переместить проект в новый репозиторий SVN?

Попробуйте http://www.hookedonlinq.com/LINQToNHibernate.ashx . Вы могли бы также хотеть посмотреть на этот вопрос: Linq к состоянию проекта NHibernate? Содействие? Вывод?

7
задан Costique 5 May 2012 в 06:35
поделиться

4 ответа

Everyone here is suggesting to delete the svn folders. SVN has a "export" command to make a copy of the folder without the .svn folders, which is ready for import later.

12
ответ дан 6 December 2019 в 21:17
поделиться

Copy the source to a new location, remove all the .svn subdirectories. Import the net result.

0
ответ дан 6 December 2019 в 21:17
поделиться

If the original repository is dead, then you have lost the history. The best thing to do is delete the .svn directories in the tree (rm -rf find ./ -iname .svn) and re-import the source onti a new repository created on the new server

0
ответ дан 6 December 2019 в 21:17
поделиться
rm -rf `find . -name .svn`
svn import [...]

Of course, you'll have not history, since your original repo died, and you must not have a backup.

0
ответ дан 6 December 2019 в 21:17
поделиться
Другие вопросы по тегам:

Похожие вопросы: