Adding and committing all untracked files in Git

See the status of the currently modified files as well as new files.

git status

Add all new files into git

git add -A

Verify that the files have been added

git status

Commit everything

git commit -a

Leave a Reply

Your email address will not be published. Required fields are marked *