Git & GitHub Workflow
flowchart LR WD["Working Directory
(your files)"] -->|"git add + git commit"| LR2["Local Repository
(.git on your computer)"] LR2 -->|"git push"| GH["GitHub
(remote repository)"] GH -.->|"git pull / git clone"| WD classDef loc fill:#2E7D32,stroke:#333,color:#fff; class WD,LR2,GH loc; click WD showInfo click LR2 showInfo click GH showInfo
Click a location to learn where Git stores data, and the commands that move it between the three places.