The FlexDeploy Git plugin makes it easy to interact with source code stored in a Git repository. This plugin requires a Git client to be stored on the FlexDeploy server and any endpoints which will execute Git plugin operations. FlexDeploy allows users to configure Git repository connection details to be shared by various projects and other configurations at a project level. This allows workflows to perform clone and tag operations within a workflow.
...
- Executes native commands using Git client
- Supports partial and shallow checkouts from Git Repository
Instance Properties
Property Name | Required | Description |
---|---|---|
| Yes | The URL to the remote GIT repository. |
| Yes | The username to the remote GIT repository. |
| Yes | The password for |
| No | The GIT executable folder. |
...
- yes | yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel
- yes | yum install gcc perl-ExtUtils-MakeMaker
- cd $HOME
- wget https://github.com/git/git/archive/v2.7.1.tar.gz
- tar -xvzf v2.7.1.tar.gz
- cd git-2.7.1/
- make prefix=/usr/local all
- make prefix=/usr/local install
Info |
---|
On some other instances including some Oracle Cloud instances, it may be necessary to either change lines 7+8 by removing the /local or by adding symlinks in /usr. The git executable must be on the path without running the .bash_profile or any other scripts because FlexDeploy won't run those scripts when SSHing to the endpoint. |