I need to create a branch copy of my trunk. While executing my nant script.
How can I create one branch using nant script?
I am using windows command prompt to execute nant script.
Please help me.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
<?xml version="1.0"?> <project name="testproj" default="createBranch" > <target name="createBranch" description="New School" > <exec program="svn.exe" basedir="svndirectorypath" commandline="copy -madded --username ${svnUserName} --password ${svnPassword} "sourcefilepath" "targetpath"" /> </target> </project>