はじめに
UiPath Process Mining の開発は共同で行われます。共同作業を促進し、変更を追跡するために、Git が使用されます。Git サーバーは、インストール済みの複数の UiPath Process Mining で使用できます。
Git は以下の 2 つの方法で組み込むことができます。
- UiPath Process Mining で管理されるローカル Git リポジトリ
- ユーザー自身が管理する Git リポジトリ。これは、ユーザー所有の Git サーバーまたは GitHub リポジトリのいずれかです。
重要
どちらの Git リポジトリを使用する場合でも、必ず UiPath Process Mining を使用して変更を加える必要があります。Git の操作を手動で行うと (Git コマンドライン ツールを使用するなど)、UiPath Process Mining を適切に操作できなくなる可能性があります。
ローカル リポジトリ
UiPath Process Mining インストール内でローカル リポジトリを使用するには、以下の手順に従います。
Step | Action |
---|---|
1 | Login on the Superadmin page. |
2 | Go to the Settings tab. |
3 | In the Repositories text field, use the following value:[{ "url": "mvlocal:upstream.git" }] |
4 | Press CTRL+S to save the changes and reload the page to apply them. |
ユーザー名とパスワード
Github アカウント (ユーザー名とパスワード) を使用するには、以下の手順に従います。
Step | Action |
---|---|
1 | Go to the Settings tab. |
2 | In the Repositories text field, use the following value:[{"url": "https://github.com/username/repo.git", "user": "username", "pass": "password" }] Replace the username and password with the actual settings you want to use. |
3 | Press CTRL+S to save the changes and reload the page to apply them. |
パスワードを非表示
設定でパスワードがはっきり表示されないようにするには、公開キーと秘密キーのペアを使用することもできます。サーバーのファイル システムにアクセスする必要があります。
公開キーと秘密キーのペアを使用するには、以下の手順を実行します。
Step | Action |
---|---|
1 | Obtain public and private keys for the Github repository you want to use. |
2 | Place them in the databases directory in . It is recommended to place them in a subdirectory, for example, respectively for the private and public keys: • <PLATFORMDIR>\databases\keys\keyfile.txt • <PLATFORMDIR>\databases\keys\keyfile.pub.txt |
3 | Go to the Settings tab. |
4 | In the Repositories text field, use the following value:[{"url": "git@github.com:username/repo.git", "privkey_file": "keys/keyfile.txt", "pubkey_file": "keys/keyfile.pub.txt" }] Replace the URL with the actual URL you want to use. If the location of your keys differs from step 2, change the values accordingly. |
5 | Press CTRL+S to save the changes and reload the page to apply them. |
Git サーバーが UiPath Process Mining に接続されています。開発者はコミットメントおよびコラボレーションを開始できます。
1 年前に更新