I checked some files inside dir using:
svn co <dir>
After that, I used the following command to replace some text in all java files inside this directory:
find . -type f -print0 | xargs -0 sed -i "s/old/new/g"
Now I have produced the following command:
svn status
It does not display a list of modified files. I can see the replacement in all java files, but could not see the list of these files in the svn status command.
Please, help. Even svn commit does not work.
source
share