[go: up one dir, main page]

Skip to content

A version-control system that mimics some of the basic features of the popular system Git in Java.

License

Notifications You must be signed in to change notification settings

YingluDeng/Gitlet_proj

Repository files navigation

Gitlet_proj

A project for Data Structures and Algorithms.

In this project, we will implement a version-control system that mimics some of the basic features of the popular system Git. Ours is smaller and simpler, however, so we have named it Gitlet.

The features implemented are init, add, commit, rm, log, global-log, find, status, checkout, branch, rm-branch, reset, and merge.

A version-control system is essentially a backup system for related collections of files. The main functionality that Gitlet supports is:

  • Saving the contents of entire directories of files. In Gitlet, this is called committing, and the saved contents themselves are called commits.
  • Restoring a version of one or more files or entire commits. In Gitlet, this is called checking out those files or that commit.
  • Viewing the history of your backups. In Gitlet, you view this history in something called the log.
  • Maintaining related sequences of commits, called branches.
  • Merging changes made in one branch into another.

Full specs: https://sp21.datastructur.es/materials/proj/proj2/proj2

About

A version-control system that mimics some of the basic features of the popular system Git in Java.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published