Why we need 'Git'
GIt version control:
1. record the history about updating code and deleting code
2. cooperation --- We can know what our coworkers has done and even the particular lines changed
3. feature branches --- We can work on the different part of the project at the same time and merge them step by step
Install Git
CLICK HERE https://git-scm.com/ to download git managing tool
After downloading a suitable version, run the .exe file and just click "next" to finish the installasion.
Then find the "Git Bash" to have a try:
Configure Git
For instance, you can label your name and email in your git, type like:
Conguring git is quite simple.
Syntax: git config <object> "<value>"