configure.sh bitbucket
Use the bitbucket subcommand with the configure.sh script to install the hook files into the hooks folder of the Git repository.
About this subcommand
By default, the bitbucket subcommand configures the pre-receive and post-receive scripts in the EWM Git Integration Toolkit/server/hooks/examples/bitbucket directory and copies them to the hooks/pre-receive.d and hooks/post-receive.ddirectories of the Git repository hosted on the Bitbucket server. You can choose to install the pre-receive or post-receive hook by using the options --pre-receive or --post-receive.
Prerequisites
Execute the configure.sh git subcommand to add EWM Git configuration variables to the Git repository to have a working EWM Git Integration.
Execute the bitbucket subcommand for each Git repository that you want to integrate with EWM.
Execute the subcommand in the system where the Bitbucket server is started. Command arguments that accept a file or folder path should be valid paths inside this system.
Usage
cd EWM Git Integration Toolkit/tools/install
./configure.sh bitbucket -g git-repo-path [options]
Options
Option | Description | Required |
---|---|---|
-g/--gitlab-repo git-repo-path | Absolute path to the bare Git repository in the BitBucket server. | Yes |
-t/--rtc-git-toolkit path | Absolute path to EWM Git Integration Toolkit directory. By default, the parent directory containing this script is used as the toolkit directory. The toolkit directory path is updated in the pre-receive and post-receive hook files. You can provide a different EWM Git Integration Toolkit directory path, if required. | No |
-l/--trace-level trace-level | Trace level for the hook file and Node.js scripts. Valid values are 1, 2, 3, and 4. The values map to the following logging levels : 1-ERROR, 2-WARNING, 3-INFO, 4-DEBUG. | No |
-u/--functional-user ID | User ID or email ID of a functional user in EWM. This is used in post-receive hooks only. | No |
-n/--node-exec path | Absolute path to the node executable. | No |
-a/--pre-receive | Configure only the pre-receive hook file. If you want to install both pre-receive and post-receive hooks, do not specify this option. | No |
-z/--post-receive | Configure only the post-receive hook file. If you want to install both pre-receive and post-receive hooks, do not provide this option. | No |
-h/--help | Displays this help message. | No |
Examples
# Display usage/help
cd EWM Git Integration Toolkit/tools/install
./configure.sh bitbucket -h
# If the Git repositories managed by the BitBucket server are located under
/var/atlassian/application-data/bitbucket/shared/data/repositories
# Configure hook files in a Git repository hosted in BitBucket server
cd EWM Git Integration Toolkit/tools/install
./configure.sh bitbucket -g /var/atlassian/application-data/bitbucket/shared/data/repositories/myrepo.git -l 4 -n /usr/bin/node
# Configure hook files in a Git repository hosted in BitBucket server (long options)
cd EWM Git Integration Toolkit/tools/install
./configure.sh bitbucket --git-repo /var/atlassian/application-data/bitbucket/shared/data/repositories/myrepo.git --trace-level 4
--node-exec /usr/bin/node