tortoisesvn - Error running svn commands on cmd line -
im trying run svn copy command below.
svn copy https://rb-svn1.in.company.com/svn/project500/branches \ https://rb-1.in.company.com/svn/cust04/project500/tags/v1.xx \ -m "dummy test version v1.xx tag"
but receive error msg saying :
svn: local, non-commit operations not take log message or revision properties
can tell me happening here ?
vatsa
i encountered same error when trying create tag command line. mistake made have put space in tag name.
a few things need keep in mind while creating tags in svn:
- a tag created trunk
(because is, essentially, "working copy" , post tag creation revision number being created) - you should never put space between words "tagname".
i hope not putting backslash "\" while you're typing full command
the correct syntax this:
svn copy https://.../trunk https://.../tags/"tagname without spaces" -m "release 1x.x of yourproductname"
this $0.02. hope find helpful:)
Comments
Post a Comment