How to get terminal output when running git command?

9 Ansichten (letzte 30 Tage)
Sohil Shrestha
Sohil Shrestha am 7 Nov. 2022
Beantwortet: Sohil Shrestha am 10 Nov. 2022
I am trying to run git command through matlab script and get the terminal output.
I have had success when running
[status,cmdoutput] = system('TERM=ansi git diff-tree -r --name-only asdasd asdasdas');
However if I use git diff instead of git diff-tree, I get empty result back. I have tried to run the same command on terminal which runs fine.

Akzeptierte Antwort

Sohil Shrestha
Sohil Shrestha am 10 Nov. 2022
This does the trick
[~, cmdoutput] = system('git --no-pager diff --no-color');

Weitere Antworten (0)

Kategorien

Mehr zu Source Control Integration finden Sie in Help Center und File Exchange

Produkte


Version

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by