flowchart LR
    idw(Workspace)
    idi(Index)
    idl(Local)
    idw -->|git add| idi
    idi -->|git commit| idl
    classDef workspace fill:lightgray,stroke:black,color:black
    classDef index fill:lightblue,stroke:black,color:black
    classDef local fill:lightgreen,stroke:black,color:black
    class idw workspace;
    class idi index;
    class idl local;










