インデックス![]()
ダウンロード (PDF、HTML および XML 形式)
[Bamboo Knowledge Base Home]
Documentation for Bamboo 4.0.x. Documentation for earlier versions of Bamboo is available too. 
![]()
The instructions on this page describe how to configure Bamboo to use a Git source repository.
To add a new Git repository, navigate to the source repository settings for a plan or job, as described on Specifying the source repository.
| リポジトリ URL | The full path to your Git repository (eg: git://github.org/atlassian/bamboo-git-plugin.git) 有効な URL の形式は次のとおりです。
| |
| ブランチ | 作業する関連ブランチ (またはタグ) の名前を入力します。master ブランチで作業する場合は、空のままにします。 | |
| 認証タイプ | None (なし) – リポジトリに匿名でアクセスする場合は [None (なし)] を選択します。 | |
| Username/password (ユーザー名 / パスワード) – ユーザー名とパスワードで認証します。 | ||
| SSH private key (SSH 非公開キー) – SSH キーをアップロードし、対応する SSH パスフレーズを指定します。 | ||
| Use shallow clones (shallow clone を使用する) | Bamboo で shallow clone を実行できるようにします (つまり、履歴は指定のリビジョン数に切り捨てられます)。これにより、最初のコード チェックアウトの速度が向上するはずですが、ビルドがリポジトリ全体の履歴に依存している場合は、このオプションを使用しないことをお勧めします。shallow clone は既定で有効になっています。 | |
| POM ファイルの場所 | (上記で定義した) Git の [Repository URL (リポジトリ URL)] のルートを基準にしたプロジェクトの (Maven 2 プロジェクトをインポートする場合にのみ利用可能) | |
詳細オプション
| サブモジュールを使用する | リポジトリにサブモジュールが定義されている場合に、サブモジュールのサポートを有効にするために選択します。エージェントにネイティブの Git 機能が定義されていない場合、サブモジュールのサポートは無効になります。 |
|---|---|
| コマンド タイムアウト | これは、ハングした Bitbucket プロセスを停止するのに役立ちます。低速なネットワークでは、Bamboo が Git リポジトリの最初の複製を作成する時間を確保するため、既定のタイムアウトを長くすることを検討してください。 |
| 詳細なログ | Turns on --verbose and --debug options in hg commands and passes the output to build logs. Use this option if you encounter problems with Git in Bamboo. |
| Enable Quiet Period (待機期間を有効にする) | 1 つのコミットが検出されてからビルドが開始されるまでの遅延を指定します。これによって、複数のコミットを 1 つのビルドに集約できます。 |
| Include/Exclude Files (ファイルを含める/除外する) | Bamboo が変更を検出するために使用する (または使用しない) ファイルを指定できます。 Enter into File Pattern a regular expression to match the files that Bamboo includes or excludes. The regex pattern must match the file path in the repository. See sub page for examples. |
| Exclude Changesets (チェンジセットを除外) | Enter a regular expression to match the commit messages for changesets that should not start a build. |
| Web リポジトリ | Web ブラウザでリポジトリを表示できる場合は、リポジトリの種類を選択します。 This allows links to relevant files to be displayed in the 'Code Changes' section of a build result. |
FishEye – リポジトリの URL およびその他の詳細を指定します。
リポジトリのパスを特定する方法 If you have previously run builds with changes from your repository, the easiest way of determining your repository path is to view the code changes and copy the path from the start of the path of one of the changed files, up to (but not including) the appropriate root directory. The root directories for repositories are the ones shown by FishEye when browsing a repository (e.g. |
6 Comments
Piotr Piątkowski
Apr 07, 2011What about triggers for git? Didn't find anything in documentation - table with "Build strategies" looks like copied from documentation for Subversion, not a word regarding git there.
PiotrA
Apr 08, 2011Er, what do you mean by 'triggers for git'? What kind of information you need which the above documentation lacks?
Piotr Piątkowski
Apr 08, 2011I need information how to configure git, to automatically trigger bamboo build after each push. Second option in "build strategies" table - there's a link to this page: http://confluence.atlassian.com/display/BAMBOO/Repository+Triggers+the+Build+when+Changes+are+Committed, but nothing about git can be found there.
PiotrA
Apr 08, 2011I'd say you need to:
.git/hooks/post-receivelooks like:http://localhost:8085/bamboois my Bamboo basedir, andHOOK-HOOKis the project-plan key for the plan using Git Repository)And that should do the trick. Does it help?
Piotr Piątkowski
Apr 09, 2011Yes, Piotr, I see that you added info to the page about Git configuration too, and that's exactly what I was asking for - thank you.
Daniel Nugent
May 15, 2012Is there a specific version of git that shallow clones have been tested with? I've noticed that on some repos (very small ones, I think, 556K with the one I consistently reproduce the problem with), enabling shallow clones causes the clone command to hang indefinitely. Switching to full clones works fine.
I am using git 1.7.10.1 with my build agent.