I use Git to add interactive mode ( git add -i ) for the first time and ask a question about the diff that it offers. By default, it shows diff for the changes I have already made (which is equivalent to using git diff --staged ). Is there a way to show how it differs from unspecified changes? This would be very useful when I needed to selectively add some files for staging and see what changes I made before adding them. I would like to do this without leaving the interactive mode or opening another terminal for regular git diff .
source share