Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Daniel Shahaf
Ranajit Ghosh wrote on Wed, Jun 09, 2021 at 17:27:20 +0530: > Hi, Not much luck! If I put the text in the front, it is not being able to > process/recognize a multi word string and throwing error like below: > > If I put the below message in the command line > svn -m "jira:RTPS-9898 EPC 2021

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Daniel Shahaf
Thorsten wrote on Wed, Jun 09, 2021 at 13:30:51 +0200: > My next guess would be that the -m paramter simply must be in the front. > For reference, options and positional arguments can be freely mixed (except when «--» is used to terminate options).

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Nathan Hartman
On Wed, Jun 9, 2021 at 1:17 PM Ranajit Ghosh wrote: > Hi..it's https:// for both urls. > > Thanks! > Is it possible that locale settings are interfering with the «://» characters between https and the rest of the path? Have you tried to enclose each entire URL in quotes? Nathan

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Ranajit Ghosh
Hi..it's https:// for both urls. Thanks! On Wed 9 Jun, 2021, 19:44 Nathan Hartman, wrote: > On Wed, Jun 9, 2021 at 10:08 AM Ranajit Ghosh > wrote: > > > > It is Bash shell with the following version. > > > > GNU bash, version 4.3.30(1)-release (powerpc-ibm-aix6.1.0.0) > > > What is the URL

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Thorsten
Does quoting in general work as expected? For example if you touch "hello world" do you end up with one file hello world or 1 file hello and 1 file world? Am 09/06/2021 um 16:08 schrieb Ranajit Ghosh: It is Bash shell with the following version. GNU bash, version 4.3.30(1)-release

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Nathan Hartman
On Wed, Jun 9, 2021 at 10:08 AM Ranajit Ghosh wrote: > > It is Bash shell with the following version. > > GNU bash, version 4.3.30(1)-release (powerpc-ibm-aix6.1.0.0) What is the URL scheme used with the and URLs? (Are they http://, https://, svn://, svn+ssh://, file://, ...) Nathan

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Ranajit Ghosh
It is Bash shell with the following version. GNU bash, version 4.3.30(1)-release (powerpc-ibm-aix6.1.0.0) Thanks! Ranajit On Wed, Jun 9, 2021 at 7:32 PM Mark Phippard wrote: > On Wed, Jun 9, 2021 at 9:47 AM Ranajit Ghosh > wrote: > > > > Yes, I tried with single quote as well. No change. >

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Mark Phippard
On Wed, Jun 9, 2021 at 9:47 AM Ranajit Ghosh wrote: > > Yes, I tried with single quote as well. No change. You mentioned you are on AIX .. what shell are you using? Some of these errors seem like it has to do with how the arguments are being passed to the svn executable. That said there is

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Ranajit Ghosh
Yes, I tried with single quote as well. No change. Thanks! Ranajit On Wed, Jun 9, 2021 at 5:57 PM Thorsten wrote: > Hello, > > Now thats fairly funny, it seems like your aix shell doesn't treat quotes > the same way other unix tools do? > > Have you tried using single quotes instead of double

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Thorsten
Hello, Now thats fairly funny, it seems like your aix shell doesn't treat quotes the same way other unix tools do? Have you tried using single quotes instead of double quotes? svn -m 'jira:RTPS-9898 EPC 2021 install'  copy Best regards, Thorsten Am 09/06/2021 um 13:57 schrieb Ranajit

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Ranajit Ghosh
Hi, Not much luck! If I put the text in the front, it is not being able to process/recognize a multi word string and throwing error like below: If I put the below message in the command line svn -m "jira:RTPS-9898 EPC 2021 install" copy giving error: Unknown subcommand: 'EPC'. Maybe you

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Thorsten
Hello, My next guess would be that the -m paramter simply must be in the front. In my scripts I use $svn -m"tag erstellen" cp"$repository/branches/v$base_Branch/uls" "$repository/tags/released/v$tag/uls" and that works fine. Best regards, Thorsten Am 09/06/2021 um 13:25 schrieb Ranajit

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Ranajit Ghosh
Hi, Thanks for your response. But I'm trying to copy the contents from one directory to another new directory within one repository itself like below: svn copy /dir/subdir1 /dir/subdir2 The interesting part is that if I omit the -m option, svn automatically opens up the editor and waits for the

Re: Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Thorsten
Hello, My guess is that you are trying to copy from one repository into a different repository. But the svn copy -m 'info message' is designed to copy files in the same repo, as the help states: URL -> URL:  complete server-side copy;  used to branch and tag to copy files from one repo

Getting error E205009 upon doing SVN copy using URL

2021-06-09 Thread Ranajit Ghosh
Hi, I'm trying to do a SVN copy using URL with the following syntax: svn copy -m 'info message' But I am getting the following error: svn: E205009: Local, non-commit operations do not take a log message or revision properties. I couldn't understand the error message. It seems to be