アプリのソース コードを含む GitHub リポジトリがあります。
ソース コードのバージョン 1.4.16 と 1.6.12 の間で行われたすべての変更を特定する必要があります。
Git コマンドをどのように完了する必要がありますか? 回答するには、回答エリアで適切なオプションを選択します。
注: それぞれの正しい選択は 1 ポイントの価値があります。
Git _________ ____________ | ヘルパー スクリプト > changes.txt

正解:
see the answer below.
Explanation
Answer below
git diff v1.4.16 v1.6.12 | helper-script > changes.txt
This command will compare the changes made between versions 1.4.16 and 1.6.12 of the source code in your GitHub repository, pipe the output through the helper-script and save the result to a file called "changes.txt" Please note that, this command assumes that you have a helper-script that can handle git diff output as an input and processes it further. It is not a default git command.