Kenny Ayers edited a comment on Bug JENKINS-14551

We are seeing file contents double when using SVN mv commands as well. This means files that are svn mv'd to a location, then added back to the repo have their contents duplicated.

Here are the reproduction steps in action:

$ vim double.txt 
$ cat double.txt 
1
2
3

$ svn add double.txt 
A         double.txt
$ svn ci . -m "Initial commit "
Adding         double.txt
Transmitting file data .

Committed revision <revision>.

$ svn mv double.txt double_new.txt
A         double_new.txt
D         double.txt

$ svn ci . -m "Renaming double"
Deleting       double.txt
Adding         double_new.txt

Committed revision <revision>.

Here is the output for Jenkins when it runs a job. The job updates a checkout which contains file “double_new.txt”, then does a ‘cat’ command on the file. Here’s the output:

Started by user Kenneth Ayers
Building remotely on builder in workspace /test
Updating <repository> at revision <revision>
A         double_new.txt
At revision <revision>

[test] $ /bin/sh -xe /tmp/hudson5312350812342753447.sh
+ cat double_new.txt
1
2
3

1
2
3

Finished: SUCCESS

Versions:
Jenkins: 1.508
Jenkins Subversion Plug-in: 1.45

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Reply via email to