Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting up PHPStorm with TortoiseSVN

I have installed the VisualSVN server on our Windows Server 2008 plus i did connect it with Dreamweaver on other client PC.

so Dreamweaver is ready to go. But i also want to setup the PHPStorm on other Client PC with that visualSVN.

But i want PHPStorm to use TortoiseSVN to connect to VisualSVN.

I can't find its settings page, i am new to PHPStorm, Especially to this Subversion Control thingy.

I also searched for this over web, but i cant find specific PHPStorm Setup procedure with TortoiseSVN or connecting to VisualSVN Server.

Can anyone Guide me to the Right Path?

like image 228
Sizzling Code Avatar asked Mar 15 '13 18:03

Sizzling Code


People also ask

Why do we use TortoiseSVN?

TortoiseSVN is a Subversion client, implemented as a Microsoft Windows shell extension, that helps programmers manage different versions of the source code for their programs. It is free software released under the GNU General Public License.

Does TortoiseSVN include subversion?

TortoiseSVN is a really easy to use Revision control / version control / source control software for Windows. It is based on Apache™ Subversion (SVN)®; TortoiseSVN provides a nice and easy user interface for Subversion.


1 Answers

The accepted answer is not entirely accurate. It is possible to use TortoiseSVN through PHPStorm's External Tools configurations. This does not integrate into the project navigation directly, but does allow direct file manipulation (and allows for 'blame' support - something PHPStorm's subversion lacks).

Similar functionality is used in eclipse.

Example, paths/macros's might need to be altered:

  • Name: SVN View Log
  • Program: C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe
  • Parameters: /command:log /path:"$FileName$"
  • Working Directory: $FileDir$
like image 53
Kyle Wiering Avatar answered Oct 12 '22 10:10

Kyle Wiering