Reputation:
I am working an a php webapp with eclipse as my IDE. I would now like to set up a version control system to manage my source code. I would also like to use the plugin to deploy my code live to the server. Can anybody recommend a plugin (subclipse?) and perhaps explain how I would use it to deploy my code?
Upvotes: 0
Views: 731
Reputation: 10806
To setup a version control you can try Subclipse
"To deploy your code to the server" I guess you meant FTPing files .. you can try SFTP http://www.jcraft.com/eclipse-sftp/
To install Subclipse --
In the Add Site dialog box, for the Location, enter:
http://www.rose-hulman.edu/class/csse/binaries/Eclipse/Subclipse
Type carefully (or copy from this web page and paste into Eclipse). Case matters. No spaces.
Back in the Available Software tab, you will now see some new options. Check the following two checkboxes:
JavaHL Adapter (recommended)
Subclipse (required)
The subboxes of the above two checkboxes will get checked automatically.
To how to use Subclipse read more
To install SFTP --
You need Eclipse SDK 3.3(or higher) to enjoy this software.
For Eclipse SDK 3.2, try the Update Site http://eclipse.jcraft.com/3.2/
Tips
* The location 'sftp://192.168.0.1/tmp' will allow you to get accesses to 'tmp' directory under user's home directory. On the other hand, 'sftp://192.168.0.1//tmp' will point to '/tmp' directory on the remote.
Upvotes: 3