What does it mean when a blue clock icon is displayed over the VS Code source control icon? When I run the git status command, I get the message: "nothing to commit, working tree clean." I checked the VS Studio documentation, but I couldn't find anything on this topic.
The clock is the "Progress Badge" which is visible while VS Code is getting repository info and status:
You can disable it in settings:
{
// controls whether git actions should show progress
"git.showProgress": true
}
.gitignore
set up, this means it
wants to slurp your node_modules
or directory of intermediate
object files and such. This takes a long time, or forever if it
crashes and restarts, and so you keep seeing the icon. .gitignore
file.When you make a change to a file and then save, the clock icon appears for a second and then disappear. I think it reads the changes you did, and add the newly changed file under the source control, so if you click on that file, you can see the difference between the old and the new version. I believe, it compares the differences when you make any change to show you the correct status beside each file, like Modified, added, etc..
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With