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
  • 277,661
  • 50
  • 283
  • 320
user445670
  • 179
  • 7

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
  • 277,661
  • 50
  • 283
  • 320