Difference between revisions of "M1 Introduction to Git"

From CSE330 Wiki
Jump to navigationJump to search
(Created page with "'''NOTE: This is an extremely simplified guide to Git meant to kickstart your work in this course. We ''strongly'' recommend you read the Git Extended read...")
 
Line 5: Line 5:
 
'''Git''' is a ''distributed version control system.'' It enables you to:
 
'''Git''' is a ''distributed version control system.'' It enables you to:
 
# Keep track of revisions to your files
 
# Keep track of revisions to your files
## Push and pull your revisions to other computers or servers
+
# Push and pull your revisions to other computers or servers
### Collaborate with other people on the same project
+
# Collaborate with other people on the same project

Revision as of 02:16, 5 August 2023

NOTE: This is an extremely simplified guide to Git meant to kickstart your work in this course. We strongly recommend you read the Git Extended reading.

Git

Git is a distributed version control system. It enables you to:

  1. Keep track of revisions to your files
  2. Push and pull your revisions to other computers or servers
  3. Collaborate with other people on the same project