TortoiseSVN: How to update multiple directory in a single window -
I would like to create a command file which will update my SVN. I have two different paths.
I have a code that will update two unique directories. Is there a way to do this in the same line of code?
@echo off cd C: \ Program Files \ TortoiseSVN \ bin \ Start TortoiseProc.exe / command: update / path: "C: \ Files \ SVN repository \" / closeonend: 0 Start TortoiseProc.exe / Command: Update / Path: "C: \ Files \ SVN Repository \ _UAT" / closeonend: 0 I want to look it like this:
Thanks advance!
From
to:
Because some commands take a list of target paths The / path parameter can take many paths, code> * character end of the page (for example, collect many specific files) One of the examples given in this illustrates:
TortoiseProc.exe / command: commit / path: "c: \ Svn_wc \ file1.txt * c: \ svn_wc \ file2" .txt "/ logmsg:" test log message "/ closeonend: 0 So you should take both paths together Separate from a * . Try: Start tortoiseProc.exe / command: update / path: "C: \ files \ SVN repository \ _Testing * C: \ files \ SVN repository \ _UAT" / close: 0
Comments
Post a Comment