Git - Add all new files in the repo
Take a look here. Perhaps you're interested in git add -u
or git add -A
.
git add -A
will stage all modifications to the working tree. Add really means "include in the index" or "add changes to the index".
Take a look here. Perhaps you're interested in git add -u
or git add -A
.
git add -A
will stage all modifications to the working tree. Add really means "include in the index" or "add changes to the index".