Results: 1022
The git status lists which files are staged, unstaged, and untracked. Outputs in the short-format
git status -s  /  git status --short
Outputs in an easy-to-parse format for scripts
git status --porcelain
Outputs in the long-format (default)
git status --long
Outputs on one line
git status -z
git init
Creates an empty git repository to the current folder
git init
Creates a directory
mygit
inside the current folder and an empty git repository into the newly created folder
git init mygit
Modify files
->
Move to staging area
->
Commit
Remote Repository
Local Repository
Repository
Working directory
Staging
Commit
Message
To see what changes each feature takes separately
Not to commit feature changes on the main branch until it's finished
Not to Interfere while other developer is trying to fix an issue on main branch
If I work on two features at the same time, I should be able to commit the finished feature changes immediately
Multiple developers can work together on the same project
No need to wait for someone else to make their changes
Git can merge everyone's changes together
Everyone can have the most updated copy of the project's files
Reasons to love Git
History
Collaboration
Feature branches
cm - centimeters
mm - millimeters
in - inches (1in = 96px = 2.54cm)
px - pixels (1px = 1/96th of 1in)
pt - points (1pt = 1/72 of 1in)
pc - picas (1pc = 12 pt)
Relative to the width of the "0" (zero)
Relative to the x-height of the current font (based on font-size and font-family)
Results: 1022