Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VSCode Git tracking colors?

What do the various colors for VSCode files mean?

They look like this. enter image description here

I haven't changed the default colors, and I can't seem to find anywhere that lists what they mean.

like image 383
Andrew Zaw Avatar asked Apr 06 '26 08:04

Andrew Zaw


1 Answers

  1. Red is a change that has not yet been added.
  2. Yellow/Beige is a file that is already being tracked but has been modified since last commit.
  3. Green is a change that you have already added to be committed.

Note: Yellow/Beige is not the same as Orange which indicates lint/build warnings. In that case the indicator to the right will be a number instead of saying "M."

like image 131
Leo Policastro Avatar answered Apr 08 '26 23:04

Leo Policastro