2

I have a lot of untracked styles. I want to add them to the changes that GIT is aware of but are not staged for commit.

My reason is that my IDE has git integration and I want to view the diffs with this. If the changes are untracked I'm not able to diff them. using git add . is very time consuming as I then need to unstage the changes repeatedly.

miltone
  • 4,416
  • 11
  • 42
  • 76
Evanss
  • 23,390
  • 94
  • 282
  • 505

1 Answers1

0

If your reason to not stage the files is to see the diff, you can parameterize the diff command, as explained in How do I show the changes which have been staged?

Community
  • 1
  • 1
Andrés
  • 719
  • 1
  • 4
  • 21