Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Atom folder Icon

Tags:

atom-editor

I am seeing this icon on my atom text editor for the first time. Can anyone tell me what it means? I am referring to the dist folder. enter image description here

like image 333
Nitsorn Wongsajjathiti Avatar asked Oct 04 '16 18:10

Nitsorn Wongsajjathiti


1 Answers

This icon is used for a Git submodule, which means that the folder is a separate Git clone (fixed to a certain commit) of a different repo.

Check whether you have a file called .gitmodules in your project's root folder, it should show you which repo that folder points to.

That would also explain why that folder was not pushed to Git. Git is simply keeping track of which repo and commit this folder points to. When cloning this repo on another server, you'll have to make sure that the submodule is checked out as well.

Please take a look at the documentation for Git submodules that I linked to in the first paragraph.

like image 147
nwinkler Avatar answered Sep 21 '22 13:09

nwinkler