How to get terminal output when running git command?

9 次查看(过去 30 天)
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.

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Source Control Integration 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by