All technological notes.
git:
version control system| 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" |
Clone
Branch
Work
Commit
Pull
Merge
Push