Skip to main content
Solved

Gitリポジトリからの復元について

  • April 10, 2026
  • 2 replies
  • 49 views

下記の記事を参考にしてGitからの復元を実施しようと考えています。

Git リポジトリからの bots の復元

以下2点質問です。

オプションメニュー「Gitリポジトリに重複がある場合」を”既存のファイルをスキップ”を選択した場合、文字どおりであれば差分がないデータは上書きされず差分があるもののみCRの公開環境に戻ると認識しているのですがあっていますでしょうか?
また、差分があるものすべてではなく、ピンポイントで戻すことは不可能という認識であっていますでしょうか?

 

有識者の皆様、お助けいただきたく存じます。

よろしくお願いいたします

Best answer by Aaron.Gleason

Hello ​@Takayuki.K_1 

The “restore bots” functionality is at the level of the element being restored, not individual actions within a Task Bot, for example. It’s more of a backup than a “diff”.

Having a “diff” functionality is challenging as elements, like Task Bots, are stored as long JSON strings. You could use a tool like WinDiff or Notepad++ with the Compare plugin, but it’s still going to be difficult to read the JSON if you don’t look at it often.

Notepad++ with Compare plugin

I do have a tool which may assist you. It converts the JSON from a Task Bot into human-readable text. 

https://developer.automationanywhere.com/mcbe/jsontotext.php

Maybe that will help you perform the comparisons more easily.

 

2 replies

Aaron.Gleason
Automation Anywhere Team
Forum|alt.badge.img+6
  • Automation Anywhere Team
  • Answer
  • April 10, 2026

Hello ​@Takayuki.K_1 

The “restore bots” functionality is at the level of the element being restored, not individual actions within a Task Bot, for example. It’s more of a backup than a “diff”.

Having a “diff” functionality is challenging as elements, like Task Bots, are stored as long JSON strings. You could use a tool like WinDiff or Notepad++ with the Compare plugin, but it’s still going to be difficult to read the JSON if you don’t look at it often.

Notepad++ with Compare plugin

I do have a tool which may assist you. It converts the JSON from a Task Bot into human-readable text. 

https://developer.automationanywhere.com/mcbe/jsontotext.php

Maybe that will help you perform the comparisons more easily.

 


  • Author
  • Cadet | Tier 2
  • April 16, 2026

@Aaron.Gleason 

Thank you for your detailed response