When svn ci, xx is already under version control appears, and then it cannot be submitted. The reason for this problem is that the file or directory you submitted is something from other SVN, that is, there are .svn directories underneath. You need to delete them before submitting. The specific operations are as follows:
Open the terminal, cd to the newly added directory, and then use the following command
#find . -mindepth 2 -name '.svn' -exec rm -rf '{}' \;
This command will delete all .svn folders in the directory recursively. Now, try submitting it again?
.svn can also be deleted directly
Similar Posts:
- [Solved] Please clean your repository working tree before checkout
- [Solved] SVN commit Error: is scheduled for addition, but is missing
- SVN Commit Error: is scheduled for addition, but is missing
- FTP delete the directory and files, and there is a file deletion prompt under the directory [550 remove directory operation failed.]
- [Solved] SVN Error: “containing working copy admin area is missin
- Linux Error: missing argument to `-exec’ [How to Solve]
- [Solved] Gitlab-runner Error: ERROR: Could not create cache adapter error=cache factory not found: factory for cache adapter “” was not registered
- Git Error: Unable to create ‘D:/xxx/.git/index.lock’: File exists. Another git process seems to be running in this repository, e.g.an editor opened by ‘git commit’. Please make sure all p
- [Solved] Linux: file name is garbled and cannot be deleted
- How to Solve Error Sudo: sorry, you must have a tty to run sudo