Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

git - Fundamental

back


Fundamental

File Lifecycle Stages in Git

Stage Name Description Common Commands
Untracked File is not tracked by Git git status(untracked)
Staged (Index) Changes have been added to the staging area git add <file>
Committed Changes are committed to the local repository history git commit -m "msg"

Workflow