Git diff: é possível mostrar APENAS linhas alteradas

Estou tentando obter apenas uma nova versão das linhas que mudaram e não todas as outras informações que o git diff mostra.

Para:

git diff HEAD --no-ext-diff --unified=0 --exit-code -a --no-prefix

Isto mostra:

diff --git file1 file2
index d9db605..a884b50 100644
--- file1
+++ file2
@@ -16 +16 @@ bla bla bla
-old text
+new text

o que eu quero ver é apenas:

new text

É possível?

questionAnswers(3)

yourAnswerToTheQuestion