When I do a git status I get a list of files prefixed with new file: . How can I get only this list? I want to process this files in a simple loop
git status
new file:
git status | grep "new file:" | cut -c 14- git status | grep "modified:" | cut -c 14-