The IDE enables you to clone an external Git Repository and to make it available within the IDE. You effectively create a copy or clone of the entire repository to work with in the IDE.
Notes:
The IDE supports the following Git URLs:
| Protocol | Access Method | Example |
|---|---|---|
| file | Direct repository access (on local disk) | file:///path_to_repository or path_to_repository |
| http | Access via HTTP protocol | http://hostname/path_to_repository |
| https | Access via HTTP protocol with SSL encryption | https://hostname/path_to_repository |
| ssh | Access via SSH protocol | ssh://hostname/path_to_repository |
| sftp | Access via SFTP protocol | sftp://hostname/path_to_repository |
| git | Access via GIT protocol | git://hostname/path_to_repository |