Change SVN repository URL

前端 未结 4 1886
盖世英雄少女心
盖世英雄少女心 2021-01-30 03:35

My current SVN structure:

Path: .
URL: svn://someaddress.com.tr/project
Repository Root: svn://someaddress.com.tr
Repository UUID: ------------------------------         


        
4条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-30 04:29

    If U want commit to a new empty Repo ,You can checkout the new empty Repo and commit to new remote repo.
    chekout a new empty Repo won't delete your local files.
    try this: for example, remote repo url : https://example.com/SVNTest cd [YOUR PROJECT PATH] rm -rf .svn svn co https://example.com/SVNTest ../[YOUR PROJECT DIR NAME] svn add ./* svn ci -m"changed repo url"

提交回复
热议问题