Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 961 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 961 Bytes

MSC6950 - Assignment 3 for Sanaz Nabavian

Git is a distributed Version Control System (VCS) that was created by Linus Torvalds, the creator of the Linux kernel.

The Git workflow involving a remote repository consists of the following steps:

  1. Pull changes from the remote repository.
  2. Create or edit files.
  3. Add the new or changed files to the staging area.
  4. Store your changes in the git database, by making a commit.
  5. Choose an informative commit message. This helps at a later time to findI specific commits and to understand the intention of the changes.
  6. Push your commits to the remote repository to share them with others and be able to access them yourself on a different computer.
  7. Continue at step 1

Unlike centralized version control systems, Git users can commit new changes, without the need of an internet connection. They can offline and then later push batches of commits at once to a server - like GitHub or Bitbucket.