Answers for "how to commit newly added files in git"

9

git add file to last commit

git add the_left_out_file
git commit --amend --no-edit
Posted by: Guest on May-15-2020
0

git added and modified files

git whatchanged --diff-filter=AM

# [preferred] OR, very similar, but slightly cleaner/less verbose file information
git log --name-status --diff-filter=AM
Posted by: Guest on October-18-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language