This summary is based on a very useful tutorial. (not English, but Korean)What is GIT?
→ Version Control System
Basic Commands of GIT
git init
git add
Why should I do git add before git commit ?
It makes you possible to choose what to commit.
It great when you have done massive changes on your code, but forgot to commit by each feature.
We call stage area when you add but didn't commit.
After...