3

I am trying to add all files that is tracked. git add . seems to add all files regardless of tracking status. Is there a git command for adding all files in git status -uno?

Mureinik
  • 297,002
  • 52
  • 306
  • 350
user445670
  • 179
  • 8

1 Answers1

3

git add -u (or --update) will add any file that was previously tracked by git. git add -A will add all the the files, including those that weren't previously tracked.

Mureinik
  • 297,002
  • 52
  • 306
  • 350