We modify AssemblyInfo.cs with version info, copyright info. How can we checkin these files after the modification? can we use some commands to commit the modified files?
Maybe just a hint for you. we do the same but not using Continua.
We are doing it per batch by creating an empty working copy e.g. in generated temp directory, e.g:
using "SET WORKDIR=TempWc%REPOSITORY_REVISION%"where the revision is passed as param from Continua):
svn checkout %REPOSITORY_BRANCH% -r %REPOSITORY_REVISION% --depth empty %WORKDIR%
Checking out each file:
svn update -r %REPOSITORY_REVISION% --depth empty --parents %SCCPATH%
Copying changes from workspace into this directory and committing them:
svn commit -m %COMMIT_MESSAGE%
maybe this helps you gives you a direction. <
HINT: you have to exclude the committed files from any commit trigger or you’ll have endless builds.
Thank you for the info. Is there any chance of getting this as an inbuilt action in Continua-CI? This is helpfull.