How to delete fiiles on the server that were accidentally part of an import?

2024-09-23 Thread Bo Berglund
I used the following command to import a folder with files into Subversion without having to create a checked out copy of the new server side folder. All of this on a single line in Windows cmd: svn import LocalFolderName https://oursvnservername/svn/pc/Name_of_project/tags/Name_of_project_6-3-3

Re: How to delete fiiles on the server that were accidentally part of an import?

2024-09-23 Thread Bo Berglund
On Mon, 23 Sep 2024 18:40:46 +0200, Bo Berglund wrote: >I used the following command to import a folder with files into Subversion >without having to create a checked out copy of the new server side folder. >All of this on a single line in Windows cmd: > > >svn import LocalFolderName >https://our

Re: How to delete fiiles on the server that were accidentally part of an import?

2024-09-23 Thread Stanimir Stamenkov via users
Mon, 23 Sep 2024 19:26:04 +0200, /Bo Berglund/: By using this it did work (all on one line anmd no extra backslash): svn delete -m "Deleting file xxx" https://svnserver/svn/repo/tags/nameofproject/filetodelete In the Windows Command Prompt (cmd) or batch scripts you could use ^ (caret) [1]:

Re: How to delete fiiles on the server that were accidentally part of an import?

2024-09-23 Thread Lorenz via users
Bo Berglund wrote: >I used the following command to import a folder with files into Subversion >without having to create a checked out copy of the new server side folder. >All of this on a single line in Windows cmd: > > >svn import LocalFolderName >https://oursvnservername/svn/pc/Name_of_project/