vote up 1 vote down star
1

Using the SVN task from tigris I can't seem to find a way to just commit one file. Is there any way to do this without first having to checkout the folder in SVN?

flag

5 Answers

vote up 1 vote down check

No. You cannot check in a single file w/o having a working copy which means you will have to checkout at least one directory.

Perhaps I don't fully understand, but you cannot check in a single file with the svn binaries so you certainly can't do it through ant.

link|flag
vote up -1 vote down

put subversion/bin into your PATH and write own ant task like

<macrodef name="svn_call">
  <attribute name="src.path" />
  <attribute name="dst.path" />
  <attribute name="command" />
  <sequential>
    <exec failonerror="true" executable="${env.SVN_HOME}/bin/svn" osfamily="windows">
    <arg line="@{command} @{src.path} @{dst.path}" />
    </exec>
    <exec failonerror="true" executable="${env.SVN_HOME}/bin/svn" osfamily="unix">
    <arg line="@{command} @{src.path} @{dst.path}" />
    </exec>
  </sequential>
</macrodef>
link|flag
The question is how do you commit a file to SVN "without first having to checkout the folder in SVN?" – Stephane Grenier Sep 21 at 16:22
sorry, site published first part of my answer only. full answer is: 1. declare svn_call task 2. for commit one local file into repository use <svn_call command="import" src.path="${yourFileName}" dst.path="${yourRepositoryUrlRoot}/${yourRepositoryPath}/${yourFileName}"/> – balmaster Oct 31 at 19:29
if you need to update file which already in repository you can use following commands <svn_call command="checkout --depth=empty" src.path="${yourRepositoryUrlRoot}/${yourRepositoryPath}" dst.path="${localTempDir}" /> - this checkout oly folder without any files into localTempDir <svn_call command="update" src.path="${localTempDir}/${yourFileName}" dst.path="" /> - this checkout your file only update your file any way <svn_call command="commit -m=''" src.path="${localTempDir}/${yourFileName}" dst.path="" /> - this commit your file only <delete dir="${localTempDir}" /> - remove temporary files – balmaster Oct 31 at 19:29
for update file which already in repository you need chekout dir contain your file :). but you can checkout your file only without other files from repository. – balmaster Oct 31 at 19:38
also you can first delete your file from repository immediatly (<svn_call command="delete" src.path="${yourRepositoryUrlRoot}/${yourRepositoryPath}/${yourFileName}" dst.path="" />) and import new versionof file again <svn_call command="import" src.path="${yourFileName}" dst.path="${yourRepositoryUrlRoot}/${yourRepositoryPath}/${yourFileName}"/> – balmaster Oct 31 at 19:47
vote up 0 vote down

In svnant you can commit an unversioned file or tree into the repository with <import/> task

link|flag
That's importing and not committing. If the file is already in SVN it will fail. – Stephane Grenier Sep 21 at 16:23
vote up 0 vote down

If you can also provide WebDAV access to the subversion repository, you could then use curl to upload a single file to the repository without having a working copy. You won't have a useful commit message, etc., so use with caution.

link|flag
vote up 1 vote down

This post has some information about committing a file with checking it out first. http://svn.haxx.se/users/archive-2007-06/0937.shtml

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.