Home

Published

- 1 min read

git add all tracked files

img of git add all tracked files

The solution for this is noted below

git add all tracked files

Solution

   // stages all modifications and deletions, without new files.
git add -u

// stages new files and modifications, without deletions.
git add .

// stages all changes.
git add -A

Try other methods by searching on the site. That is if this doesn’t work