How to properly create an SVN tag from trunk?

前端 未结 9 1613
挽巷
挽巷 2021-01-29 17:04

I am creating my first project in Subversion. So far I have

 branches
 tags
 trunk

I think I immediately need to make branches singular and sta

9条回答
  •  佛祖请我去吃肉
    2021-01-29 17:42

    Try this. It works for me:

    mkdir /tags/Release1.0
    svn commit /tags/Release1.0 
    svn copy /trunk/* /tag/Release1.0
    svn commit 

提交回复
热议问题