Reading Assignment: All of Programming Chapter 37.4 Revision Control: Git
Useful Resources:
- Git Book: https://git-scm.com/book/en/v2
- Git教程 by 廖雪峰
You may also refer to my previous articles(Chinese only)
Past Versions
You can easily find previous version of your code or article or data under git control.
Collaboration
You will be able to manage changes between developers by run commands push
, pull
to merge works.
Multiple Versions of the Present
With branches, you can fix a critical problem in currently released version without stopping new feature development.
Read More!
Git Book: https://git-scm.com/book/en/v2
For interested program learner, the first two chapter is a must. For serious software development class, chapter 3-6 should be mastered.