sdfgdfg
sdfgdfg

Reputation:

svn repository creation

I have installed SVN Tortoise and want to create a repository. I followed the manual and typed "svnadmin ........" on the correct directory on command prompt. It doesnt recognize the word svnadmin: 'svnadmin' is not recognized as an internal or external command.........

Upvotes: 1

Views: 2042

Answers (4)

schnaader
schnaader

Reputation: 49739

If you want to use TortoiseSVN from the command line, have a look at this tutorial. The bash script should be easily portable to Windows, too. You basically call "Program Files/TortoiseSVN/bin/TortoiseProc.exe" with some parameters.

Though it seems you can't create a repository this way and only do basic tasks like commit/update.

Upvotes: 0

twk
twk

Reputation: 3120

You can create the repository by just creating an empty folder, then open it and right-click and select TortoiseSVN->Create repository here.

Upvotes: 1

anon
anon

Reputation:

Tortoise does not install the command line tools. To create a new repository:

  • create a directory using Explorer
  • change into the directory
  • right click on the empty directory pane
  • choose "Create Repository Here" from the Tortoise menu

If you want the command line tools you can get them here.

Upvotes: 5

qeek
qeek

Reputation: 2090

You should set up your %PATH% variable accordingly. Although, I wonder why the installer didn't do this for you. Make sure that TortoiseSVN has actually installed the svn tools, also.

Upvotes: 0

Related Questions