Karl Cassar
Karl Cassar

Reputation: 6483

tortoisesvn commit with * seperated paths taking over 8GB of memory and stalling computer

I have a batch file to commit folders to SVN, as per below:

tortoiseproc /command:commit /path:"path1*path2*path3" /closeonend:3

If I execute the above command, the spawned process starts taking loads of memory until the computer hangs - Over 8GB.

If I split the command into 3 seperate commands, as per below - it works fine:

tortoiseproc /command:commit /path:"path1" /closeonend:3
tortoiseproc /command:commit /path:"path2" /closeonend:3
tortoiseproc /command:commit /path:"path3" /closeonend:3

Any ideas why this could be?

Upvotes: 1

Views: 100

Answers (1)

Stefan
Stefan

Reputation: 43575

Problem is known and already fixed. Try a nightly build.

Upvotes: 2

Related Questions