Skip to content

Instantly share code, notes, and snippets.

@wowh
Last active October 4, 2015 12:08
Show Gist options
  • Save wowh/2632952 to your computer and use it in GitHub Desktop.
Save wowh/2632952 to your computer and use it in GitHub Desktop.
tortoisesvn command line bat
@echo off
if "%1"=="log" start tortoiseproc /command:%1 /path:"./%2"
if "%1"=="commit" start tortoiseproc /command:%1 /path:"./%2"
if "%1"=="ci" start tortoiseproc /command:commit /path:"./%2"
if "%1"=="update" start tortoiseproc /command:%1 /path:"./%2"
if "%1"=="diff" start tortoiseproc /command:%1 /path:"./%2"
@wowh
Copy link
Author

wowh commented May 8, 2012

usage:
show log : tsvn log
commit: tsvn ci path
update: tsvn update path
......

@marcows
Copy link

marcows commented Mar 16, 2015

Maybe you are interested in my version of tsvn.bat: https://gist.github.com/marcows/a49eebf0eb8d64babb90
Still a simple batch file, but supports multiple files as parameter.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment