I need some combination of 'git add -p' and 'git add -A' command.
I need to review all changes, not files already included into git. What I can do?
Regards, Alex
I need some combination of 'git add -p' and 'git add -A' command.
I need to review all changes, not files already included into git. What I can do?
Regards, Alex
First, add all new files to the staging area (bash syntax):
git add `git ls-files --others --exclude-standard`
Then you add with patch option normally:
git add -p