Problem adding a HTTP/HTTPS GIT repository to FeCru
プラットフォームについて: Data Center のみ。 - This article only applies to Atlassian apps on the Data Center プラットフォーム。
この KB は Data Center バージョンの製品用に作成されています。Data Center 固有ではない機能の Data Center KB は、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。 Server* 製品のサポートは 2024 年 2 月 15 日に終了しました。Server 製品を実行している場合は、 アトラシアン Server サポート終了 のお知らせにアクセスして、移行オプションを確認してください。
*Fisheye および Crucible は除く
症状
When you get the following ERROR when trying to add a GITRepository that has its location on a HTTP or HTTPS Server (example, http://server_name[:port]/path_to_repository):
2012-07-02 10:44:40,035 ERROR [btpool0-69595 ection-1341240279975] fisheye.app RepositoryAdminRpcServiceImpl-testRepositoryConnection - Error testing connection.
com.atlassian.fisheye.spi.admin.services.RepositoryConfigException: com.cenqua.fisheye.config.ConfigException: Error talking to repository:
fatal: Unable to find remote helper for 'https'
...
Caused by: com.cenqua.fisheye.config.ConfigException: Error talking to repository:
fatal: Unable to find remote helper for 'https'
...原因
This happens because you did not build GIT with HTTP/HTTPS support and/or you do not have installed.CURL/EXPAT
ソリューション
You will have to build GIT with the following options:
PS: In order to build it with HTTP/HTTPS support you will need EXPAT and CURL installed on you host.
# make prefix=<GIT_INSTALL_PATH> CURLDIR=<CURL_INSTALL_PATH> NO_R_TO_GCC_LINKER=YesPlease EXPATDIR=<EXPAT_INSTALL_PATH> all
# make prefix=<GIT_INSTALL_PATH> CURLDIR=<CURL_INSTALL_PATH> NO_R_TO_GCC_LINKER=YesPlease EXPATDIR=<EXPAT_INSTALL_PATH> installこの内容はお役に立ちましたか?