After further development I need to add additional changes to previous commit.
I've made a lot of changes including from IDE, that handle file renames, creating new files, etc.
So git status
shows a lot of files in staging area.
I do not want to add this files with git commit --amend --no-message
.
Can I list these files as arguments to git commit --amend --no-message
? Any other possibilities without disturbing index?
I think about stashing index - but it is complicated thing to list 40 files to ignore instead 2 files for amend....