Simon Schneider
Simon Schneider

Reputation: 1236

Automatic FTP synchronization with PhpStorm

I'm trying out PHPStorm by Jetbrains at the moment, which I think is an awesome IDE.

The only complain I have is that Im always in fear that I will overwrite changes other people made.

I'm currently working on a project without Git, just pure FTP. If I start PHPstorm, the first thing I have to do is synchronize my local files manually using the "Compare with local version..." dialog, which takes a lot of time at bigger projects.

Is it possible that PhpStorm behaves like Eclipse Remote Explorer? It would be awesome if PhpStorm would check the file I just opened for a newer version on my default remote and replaces it automatically.

Upvotes: 0

Views: 1277

Answers (1)

Noah
Noah

Reputation: 1857

In the Tools > Deployment > Options dialog, you will see the following option:

PHPStorm Options

Changing these options will allow you to customize how your uploads are pushed and when you're warned about overwriting changes

Upvotes: 1

Related Questions