How to use the SVN command line with TortoiseSVN
Asked Answered
M

2

19

How do I use the command line for SVN when SVN is installed by Tortoise?

I'm trying to invoke some commands found in Changing a revision property in Subversion, but I'm not seeing the same directory structure under Program Files (x86)\VisualSVN Server (obviously).

Montemayor answered 25/2, 2010 at 16:0 Comment(1)
duplicate of #1625906Adagio
M
22

That page mostly references setting up SVN hooks on the server, but you can call SVN functions through Tortoise like the following:

<Path to TortoiseSVN>\bin\TortoiseProc.exe /command:<SVNCommand> <Parameters>

For example:

C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe /command:log /path:"c:\MyRepo\"

Reference here: Automating TortoiseSVN

Masto answered 25/2, 2010 at 16:27 Comment(2)
TortoiseProc.exe is a GUI program and the "output" will be windows with some information in them, not text to standard output.Magdeburg
How we can pass username and password?Deca
K
3

The directory structure is per repository. You have to look at your repository's folder, not the program folder.

Kutzenco answered 25/2, 2010 at 16:3 Comment(3)
ok, I tried to cd to repositories and also repositories\repoName and tried to run that mv .... command. I must be missing something here.Montemayor
Did you look in your working copy or in the repository? (The latter is on the server, the former on the client.)Kutzenco
How to use svn update [-r rev] [-depth ARG] [--ignore-externals] PATHTempo

© 2022 - 2024 — McMap. All rights reserved.