yalin / git_assignment

CMSC-6950 Assignment 2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CMSC6950 - Assignment 2 for Mustafa Yalin Aydin

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 repository, by making a commit.
  5. Choose an informative commit message. This helps at a later time to find 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 work offline and then later push batches of commits at once to a server - like GitHub or Bitbucket.

About

CMSC-6950 Assignment 2