Using git over ssh:
- Use studio’s “New PHP Project from git” wizard to checkout from git with both protocols
OR
- To work with CLI , follow instructions in the following links to install git client:
-
From http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html download:
- Plink: plink.exe
- Pageant: pageant.exe
- Start pageant and click Add Key to add your php-cloud ssh key
- Add a new GIT_SSH variable in your OS environment
Windows Example:
- Open: Computer > properties > Advanced system settings > environment variables
- Add GIT_SSH=<path to>\plink.exe

- Open git console(bash) , use the <ssh url> from my.phpcloud.com for your git commands
Examples:
- git clone <ssh url>
- git commit –m “your message” (localy)
- git push <ssh url>


