概要
下記図に示すようにAzure DevOpsの機能であるAzure Pipelineにて、別の組織にあるAzure Reps(Git)にプッシュする方法を共有します。同様の手順にて、異なるテナントのAzure DevOpsに対しても適応可能です。
事前準備
- 2つのAzure DevOps組織を作成すること
- それぞれの組織にて、プロジェクトを作成すること
手順
- プッシュ先のプロジェクト(上記図における組織B)にて、"User Setting"→"Personal access tokens"を選択。
2 . "New Token"を選択
3 . 下記表の通りに入力し、"OK"を選択。表示されるアクセスキーを控えておいてください。
項目 | 設定値 |
---|---|
Name | ※わかりやすい名称を入力 |
Organization | ※プッシュ先組織名を選択 |
Code | "Read & wire"をチェック |
4 . "Pipelines"を選択後、"Create Pipeline"を選択。
5 . "Azure Repos Git"を選択。
6 . プッシュするレポジトリーを選択。
7 . "Stater pipeline"を選択。
8 . 下記コードを張りつけ、変数の値を設定
変数 | 値 |
---|---|
TmpRepoDir | _repo |
UserName | ※コミットするユーザー名 |
OrganizationName | ※プッシュ先の組織名 |
ProjectName | ※プッシュ先のプロジェクト名 |
RepositoryName | ※プッシュ先のレポジトリー名 |
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
variables:
TmpRepoDir: _repo
UserName: ryoma.nagata
OrganizationName: import-git
ProjectName: import-git
RepositoryName: repository-from-otherorganizationname
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- script: |
cd /tmp && rm -rf /tmp/$(TmpRepoDir)
git -c http.extraheader="AUTHORIZATION: bearer $(System.AccessToken)" clone --mirror $(Build.Repository.Uri) $(TmpRepoDir)
git -C /tmp/$(TmpRepoDir) push --mirror https://$(UserName):$(secreat_repos)@dev.azure.com/$(OrganizationName)/$(ProjectName)/_git/$(RepositoryName)
displayName: 'Copy to Azure DevOps Repos'
9 . 右上にある"Variables"を選択。
10 . "New variable"を選択。
11 . 下記の入力を行い、"OK"→"Save"を選択。
項目 | 値 |
---|---|
Name | secreat_repos |
Value | ※3の手順で取得したトークンキーを入力する。 |
Keep this value secret | チェックする。 |
12 . 右上にある"Save and run"を選択。
13 . 適切な入力を行い、"Save and run"を選択。
14 . ジョブ完了後、プッシュ先のレポジトリーにコードが配置されていることを確認。