Getting Started
See the Git(let) Basics slides from Summer 2017 for a deeper overview of Git and version control systems.
This project will be done in a group of two pairs, or four students, which we will call a “super-group”. Your code will not be accepted unless you turn it in with a super-group.
To work in a super-group, you must create a new repository and use this repository for working on the project and submitting to Gradescope. You can create this repository by going to this link and following the setup instructions there.
Alternatively, you can do the project with only your lab partner, but this will be allowed only for exceptional circumstances with your TA’s permission. If you would like to work with only your lab partner, please talk to your TA.
Before pulling this project’s starter files, you’ll need to set up your group repo. After cloning your super-group repo, you can simply follow the instructions here, with the caveat that you’ll need to add a different skeleton repo this time: skeleton-su18-gitlet. You can do so with the following command:
$ git remote add skeleton-gitlet https://github.com/cs61bl/skeleton-su18-gitlet.git
You’ll need to replace every occurrence of **
with the name of your group repo.
You can get the skeleton code with the following command:
$ git pull skeleton-gitlet master
Any updates to the skeleton code or the test files can be obtained in the same way.
Additionally, if you are using a new repository, you must follow the instructions from lab 4 to set up the libraries.
Using IntelliJ
To use IntelliJ with this project, you will have to import the project at the su18-***
level, where su18-***
is your repository that contains the gitlet
and gitlet-testing
directories. This is due to the package that this project uses.
If IntelliJ gives you an error for your “package gitlet” statement saying “Package name ‘gitlet’ does not correspond to the file path”, then you should go under “Project Structure -> Modules” and unmark your “gitlet” folder as a Sources root.
Design Process
Because of the size of this project, before you start coding you’ll need to think about a high level design for your program. You’ll have a week after the release of this spec to work with your partners to create a design for your gitlet implementation. You must also use this time to do some exploratory programming to try out some of your ideas against simple tests.
This design time should accumulate into a design document, a short outline of your design, its advantages, disadvantages, your thought process, etc. The format of your design doc is open ended, as it will be graded based on effort. Having said that, your design doc should include a broad overview of the classes you intend to implement, including what data structures you intend to use and what methods you intend to have. See this abbreviated and simplified Commit.java class design that you can use as an example.
In your design document, you must also include what each group member will be responsible for. You may split up the tasks in any way that you’d like, but it is recommended to assign clear, smaller tasks versus large, more vague tasks (for example, assigning something like “complete the add
and commit
method” is better than assigning “help with the code writing”). You may use the line counts at the end of each of the commands (see The Commands) as an estimate of how much work each task will take, which may be helpful when assigning tasks.
In addition to the above, your design document should also include a description of how your program will handle the add
and commit
commands, given your proposed design. You must bring your finished design document to lab on Monday, 7/9. During lab, your TA will check in with your group to discuss your design. The design document will be worth 4 points out of the total 36 points for this project.
Overview of Gitlet
In this project you’ll be implementing a version-control system. This version-control system mimics some of the basic features of the popular version-control system git, but it is smaller and simpler, so we have named it gitlet.
A version-control system is essentially a backup system for files on your computer. The main functionality that gitlet supports is:
- Saving backups of directories of files. In gitlet, this is called committing, and the backups themselves are called commits.
- Restoring a backup 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.
The point of a version-control system is to help you when coding complicated projects, or when collaborating with others on a project. You save versions of the project periodically. If at some later point in time you accidentally mess up your code, then you can restore your source to a previously committed version (without losing any of the changes you made since then).
In gitlet, you don’t just commit individual files at a time. Instead, you can commit an arbitrary set of files at the same time. We like to think of each commit as a snapshot of your entire project at one point in time. However, for simplicity, many of the examples in the remainder of this document involve just committing one file at a time. Just keep in mind you could add in multiple files to each commit.
In this project, it will be helpful for us to visualize the commits we make over time. Suppose we have a file wug.txt, we add some text to it, and commit it. Then we modify the file and commit these changes. Then we modify the file again, and commit the changes again. Now we have saved three total backup versions of this file, each one further in time than the previous. We can visualize these commits like so:
Here we’ve drawn an arrow indicating that each commit contains some kind of reference to the commit that came before it. We call the commit that came before it the parent commit – this will be important later. But for now, does this drawing look familiar? That’s right; it’s a linked list!
The big idea behind gitlet is that we can visualize the history of the different versions of our files in a list like this. Then it’s easy for us to restore old versions of files. You can imagine making a command like: “Gitlet, please revert to the state of the files at commit #2”, and it would go to the second node in the linked list and restore the copies of files found there.
If we tell gitlet to revert to an old commit, the front of the linked list will no longer reflect the current state of your files, which might be a little misleading. In order to fix this problem, we introduce something called the head pointer. The head pointer keeps track of where in the linked list we’re currently “at”. Normally, as we make commits, the head pointer will stay at the front of the linked list, indicating that the latest commit reflects the current state of the files:
However, let’s say we revert to the state of the files at commit #2 (technically, this is the reset command, which you’ll see later in the spec). We move the head pointer back to show this:
All right, now, if this were all gitlet could do, it would be a pretty simple system. But gitlet has one more trick up its sleeve: it doesn’t just maintain older and newer versions of files, it can maintain differing versions. Imagine you’re coding a project, and you have two ideas about how to proceed: let’s call one Plan A, and the other Plan B. Gitlet allows you to save both versions, and switch between them at will. Here’s what this might look like, in our pictures:
It’s not really a linked list anymore. It’s more like a tree. We’ll call this thing the commit tree. Keeping with this metaphor, each of the separate versions is called a branch of the tree. You can develop each version separately:
There are two pointers into the tree, representing the furthest point of each branch. At any given time, only one of these is the currently active pointer, and this is what’s called the head pointer. The head pointer is the pointer at the front of the current branch.
That’s it for our brief overview of the gitlet system! Don’t worry if you don’t fully understand it yet; the section above was just to give you a high level picture of what it’s meant to do. A detailed spec of what you’re supposed to do for this project follows this section.
But a last word here: one feature of the commit tree that it is in some sense immutable: once a commit node has been created, it can never be destroyed (or changed at all). We can only add new things to the commit tree, not modify existing things. This is an important feature of gitlet! Remember, it’s a version-control system, and one of our goals with it is to allow us to save things so we don’t delete them accidentally.
Internal Structures
Real git
distinguishes between several different kinds of objects. For our purposes, the important ones are
- Blobs
- Essentially the contents of files.
- Trees
- Directory structures mapping names to references to blobs and other trees (subdirectories).
- Commits
- Combinations of log messages, other metadata (commit date, author, etc.), a reference to a tree, and references to parent commits. The repository also maintains a mapping from branch heads (we’ve used names like
master
, etc.) to references to commits, so that certain important commits have symbolic names.
We will simplify from git
still further by
- Incorporating trees into commits and not dealing with subdirectories (so there will be one “flat” directory of plain files for each repository).
- Having a single parent commit associated with each commit.
- Our commit metadata will consist only of a timestamp and log message. A commit, therefore, will consist of a log message, timestamp, a mapping of file names to blob references, and a single parent reference.
Every object—every blob and every commit in our case—has a unique integer id that serves as a reference to the object. An interesting feature of git
is that these ids are universal: unlike a typical Java implementation, two objects with exactly the same content will have the same id on all systems. In the case of blobs, “same content” means the same file contents. In the case of commits, it means the same metadata, the same mapping of names to references, and the same parent reference. The objects in a repository are thus said to be content addressable.
Both git
and gitlet
accomplish this the same way: by using a cryptographic hash function called SHA-1 (Secure Hash 1), which produces a 160-bit integer hash from any sequence of bytes. Cryptographic hash functions have the property that it is extremely difficult to find two different byte streams with the same hash value (or indeed to find any byte stream given just its hash value), so that essentially, we may assume that the probability that any two objects with different contents have the same SHA-1 hash value is 2-160 or about 10-48. Basically, we simply ignore the possibility of a hashing collision, so that the system has, in principle, a fundamental bug that in practice never occurs!
Fortunately, there are library classes for computing SHA-1 values, so you won’t have to deal with the actual algorithm. All you have to do is to make sure that you correctly label all your objects. In particular, this involves including all metadata and references when hashing a commit.
By the way, the SHA-1 hash value, rendered as a 40-character hexadecimal string, makes a convenient file name for storing your data in your .gitlet
directory (more on that below). It also gives you a convenient way to compare two files (blobs) to see if they have the same contents: if their SHA-1s are the same, we simply assume the files are the same.
For remotes (like origin
and skeleton
, which we’ve been using all summer), we’ll simply use other gitlet
repositories. Pushing simply means copying all commits and blobs that the remote repository does not yet have to the remote repository, and resetting a branch reference. Pulling is the same, but in the other direction. Remotes are optional.
Reading and writing your internal objects from and to files is actually pretty easy, thanks to Java’s serialization facilities. The interface java.io.Serializable
has no methods, but if a class implements it, then the Java runtime will automatically provide a way to convert to and from a stream of bytes, which you can then write to a file using the I/O class java.io.ObjectOutputStream
and read back (and deserialize) with java.io.ObjectInputStream
. The term “serialization” refers to the conversion from some arbitrary structure (array, tree, graph, etc.) to a serial sequence of bytes.
Here is a summary example of the structures discussed in this section. As you can see, each commit (rectangle) points to some blobs (circles), which contain file contents. The commits contain the file names and references to these blobs, as well as a parent link. These references, depicted as arrows, are represented in the .gitlet
directory using their SHA-1 hash values (the small hexdecimal numerals above the commits and below the blobs). The newer commit contains an updated version of wug1.txt
, but shares the same version of wug2.txt
as the older commit.
Detailed Specification
The only structure requirement we’re giving you is that you have a class named gitlet.Main
and that it has a main method. Here’s your skeleton code for this project (in package gitlet
, where all of your code for this project must reside):
public class Main {
public static void main(String[] args) {
// FILL IN
}
}
We are also giving you some utility methods for performing a number of mostly file-system-related tasks, so that you can concentrate on the logic of the project rather than the peculiarities of dealing with the OS.
You may, of course, write additional Java classes to support your project—in fact, please do. But don’t use any external code (aside from JUnit), and don’t use any programming language other than Java. You can use all of the Java Standard Library that you wish, plus utilities we provide.
Overall Requirements
The majority of this spec will describe how Main.java
’s main method must react when it receives various arguments which correspond to commands to the gitlet system. But before we break down command-by-command, here are some overall guidelines the whole project should satisfy:
In order for gitlet to work, it will need a place to store old copies of files (it is a backup system, after all), and other metadata. All of this stuff must be stored in a directory called .gitlet
, just as this information is stored in directory .git
for the real git system (files with a .
in front are hidden files. You will not be able to see them by default on most operating systems. On Unix, the command ls -a
will show them.). A gitlet system is considered “initialized” in a particular location if it has a .gitlet
directory there. Most gitlet commands (except for the init command) only need to work when used from a directory where a gitlet system has been initialized —i.e. a directory that has a .gitlet
directory. The files that aren’t in your .gitlet
directory (i.e. the current versions of the files, not the backups), are referred to as the files in your working directory.
Most commands have runtime or memory usage requirements. You must follow these. Some of the runtimes are described as constant “relative to any significant measure”. The significant measures are: any measure of number or size of files, any measure of number of commits. You can ignore time required to serialize or deserialize, with the one caveat that your serialization time cannot depend in any way on the total size of files that have been added, committed, etc. (what is serialization? You’ll see later in the spec). You can also pretend that getting from a hash table is constant time.
Some commands have failure cases with a specified error message. The exact formats of these are specified later in the spec. If your program ever encounters one of these failure cases, it must print the error message and not change anything else. You don’t need to handle any other error cases except the ones listed as failure cases.
There are some failure cases you need to handle that don’t apply to a particular command. Here they are:
- If a user doesn’t input any arguments, print the message
Please enter a command.
and exit. - If a user inputs a command that doesn’t exist, print the message
No command with that name exists.
and exit. - If a user inputs a command with the wrong number or format of operands, print the message
Incorrect operands.
and exit. - If a user inputs a command that requires being in an initialized gitlet working directory (i.e., one containing a
.gitlet
subdirectory), but is not in such a directory, print the messageNot in an initialized gitlet directory.
Some of the commands have their differences from the real git listed. The spec is not exhaustive in listing all differences from git, but it does list some of the bigger or potentially confusing and misleading ones.
Do NOT print out anything except for what the spec says. Some of our autograder tests will break if you print anything more than necessary.
Always exit with exit code 0, even in the presence of errors. That is, your program should never crash due to an exception. This allows us to use other exit codes as an indication that something blew up.
The spec classifies some commands as “dangerous”. Dangerous commands are ones that potentially overwrite files (that aren’t just metadata)—for example, if a user tells gitlet to restore files to older versions, gitlet may overwrite the current versions of the files. Just FYI.
The Commands
Note that the line counts provided below are mainly for reference. Your line count will almost certainly differ depending on the design and abstractions provided by your implementation.
init
- Usage
java gitlet.Main init
- Description
- Creates a new gitlet version-control system in the current directory. This system will automatically start with one commit: a commit that contains no files and has the commit message
initial commit
. It will have a single branch:master
, which initially points to this initial commit, andmaster
will be the current branch. - Runtime
- Should be constant relative to any significant measure.
- Failure cases
- If there is already a gitlet version-control system in the current directory, it should abort. It should NOT overwrite the existing system with a new one. Should print the error message
A gitlet version-control system already exists in the current directory.
- Dangerous?
- No
- Our line count
20
add
- Usage
java gitlet.Main add [file name]
- Description
- Adds a copy of the file as it currently exists to the staging area (see the description of the
commit
command). For this reason, adding a file is also called staging the file. The staging area should be somewhere in.gitlet
. If the current working version of the file is identical to the version in the current commit, do not stage it to be added. If the file had been marked to be removed (seegitlet rm
), delete that mark before adding the file as usual. - Runtime
- In the worst case, should run in linear time relative to the size of the file being added.
- Failure cases
- If the file does not exist, print the error message
File does not exist.
- Dangerous?
- No
- Our line count
20
commit
- Usage
java gitlet.Main commit [message]
- Description
- Saves a snapshot of certain files in the current commit and staging area so they can be restored at a later time, creating a new commit. The commit is said to be tracking the saved files. By default, each commit’s snapshot of files will be exactly the same as its parent commit’s snapshot of files; it will keep versions of files exactly as they are, and not update them. A commit will only update files it is tracking that have been staged at the time of commit, in which case the commit will now include the version of the file that was staged instead of the version it got from its parent. A commit will save and start tracking any files that were staged but weren’t tracked by its parent. Finally, files tracked in the current commit may be untracked in the new commit as a result of the
rm
command (below).The bottom line: By default a commit is the same as its parent. Staged and removed files are the updates to the commit.
Some additional points about commit:
- The staging area is cleared after a commit.
- The commit command never adds, changes, or removes files in the working directory (other than those in the
.gitlet
directory). Therm
command will remove such files, as well as somehow marking them to be untracked bycommit
. - Any changes made to files after staging or removal are ignored by the
commit
command, which only modifies the contents of the.gitlet
directory. For example, if you remove a tracked file using the Unixrm
command (rather thangitlet
’s command of the same name), it has no effect on the next commit, which will still contain the deleted version of the file. - After the commit command, the new commit is added as a new node in the commit tree.
- The commit just made becomes the “current commit”, and the current branch’s head pointer now points to it. The previous branch’s head commit is this commit’s parent commit.
- Each commit should contain the date time it was made.
- Each commit has a log message associated with it that describes the changes to the files in the commit. This is specified by the user. The entire message should take up only one entry in the array
args
that is passed tomain
. To include multiword messages, you’ll have to surround them in quotes. - Each commit is identified by its SHA-1 id, which must include the file (blob) references of its files, parent reference, log message, and commit time.
- Runtime
- Runtime should be constant with respect to any measure of number of commits. Runtime must be no worse than linear with respect to the total size of files the commit is tracking. Additionally, this command has a memory requirement: Committing must increase the size of the
.gitlet
directory by no more than the total size of the staged files at the time of commit, not including additional metadata. This means don’t store redundant copies of versions of files that a commit receives from its parent. You are allowed to save whole backups of files; don’t worry about only saving diffs, or anything like that. - Failure cases
- If no files have been staged (or marked for untracking: more on that next), aborts. Print the message
No changes added to the commit.
Every commit must have a non-blank message. If it doesn’t, print the error messagePlease enter a commit message.
It is not a failure for tracked files to be missing from the working directory or changed in the working directory. Just ignore everything outside the.gitlet
directory entirely. - Dangerous?
- No
- Differences from real git
- In real git, commits may have multiple parents (due to merging) and also have considerably more metadata.
- Our line count
40
- Before-and-after commit
rm
- Usage
java gitlet.Main rm [file name]
- Description
- Untrack the file; that is, indicate (somewhere in the
.gitlet
directory) that it is not to be included in the next commit, even if it is tracked in the current commit (which will become the next commit’s parent). This command breaks down as follows:- If the file is tracked by the current commit, delete the file from the working directory, unstage it if it was staged, and mark the file to be untracked by the next commit.
- If the file isn’t tracked by the current commit but it is staged, unstage the file and do nothing else.
- Runtime
- Should run in constant time relative to any significant measure.
- Failure cases
- If the file is neither staged nor tracked by the head commit, print the error message
No reason to remove the file.
- Dangerous?
- Yes (although if you use our utility methods, you will only hurt your repository files, and not all the other files in your directory.)
- Our line count
5
log
- Usage
java gitlet.Main log
- Description
- Starting at the current head commit, display information about each commit backwards along the commit tree until the initial commit. This set of commit nodes is called the commit’s history. For every node in this history, the information it should display is the commit id, the time the commit was made, and the commit message. Here is an example of the exact format it should follow:
=== Commit a0da1ea5a15ab613bf9961fd86f010cf74c7ee48 2015-03-14 11:59:26 A commit message. === Commit 3e8bf1d794ca2e9ef8a4007275acf3751c7170ff 2015-03-14 11:49:29 Another commit message. === Commit e881c9575d180a215d1a636545b8fd9abfb1d2bb 2015-03-14 11:39:26 initial commit
There is a
===
before each commit and an empty line after it. As in realgit
, each entry displays the unique SHA-1 id of the commit object. Display commits with the most recent at the top. By the way, there’s a class in the Java standard library that will help you format the dates really easily. Look into that instead of trying to construct it manually yourself! - Runtime
- Should be linear with respect to the number of nodes in head pointer’s history.
- Failure cases
- None
- Dangerous?
- No
- Our line count
5
Here’s a picture of the history of a particular commit. If the HEAD pointer is currently pointing to the commit with the version of wug.txt containing “This is a wug!” (indicated by the blue arrow), log would print out information about the circled commits:
The history ignores other branches and the future. Now that we have the concept of history, let’s refine what we said earlier about the commit tree being immutable. It is immutable precisely in the sense that the history of a commit with a particular id may never change, ever. If you think of the commit tree as nothing more than a collection of histories, then what we’re really saying is that each history is immutable.
global-log
- Usage
java gitlet.Main global-log
- Description
- Like log, except displays information about all commits ever made. The order of the commits does not matter.
- Runtime
- Linear with respect to the number of commits ever made.
- Failure cases
- None
- Dangerous?
- No
- Our line count
5
find
- Usage
java gitlet.Main find [commit message]
- Description
- Prints out the ids of all commits that have the given commit message, one per line. If there are multiple such commits, it prints the ids out on separate lines. The commit message is a single operand; to indicate a multiword message, put the operand in quotation marks, as for the
commit
command above. This command must return every matching commit that has ever been made, even those that are not on the current branch. Order does not matter. - Runtime
- Should be linear relative to the number of commits.
- Failure cases
- If no such commit exists, prints the error message
Found no commit with that message.
- Dangerous?
- No
- Differences from real git
- Doesn’t exist in real git. Similar effects can be achieved by grepping the output of log.
- Our line count
5
status
- Usage
java gitlet.Main status
- Description
- Displays what branches currently exist, and marks the current branch with a
*
. Also displays what files have been staged or marked for untracking. An example of the exact format it should follow is as follows.=== Branches === *master other-branch === Staged Files === wug.txt wug2.txt === Removed Files === goodbye.txt === Modifications Not Staged For Commit === junk.txt (deleted) wug3.txt (modified) === Untracked Files === random.stuff
There is an empty line between each section. Entries should be listed in lexicographic order, using the Java string-comparison order (the asterisk doesn’t count). A file in the working directory is “modified but not staged” if:
- Tracked in the current commit, changed in the working directory, but not staged; or
- Staged for addition, but with different contents than in the working directory; or
- Staged for addition, but deleted in the working directory; or Not staged for removal, but tracked in the current commit and deleted from the working directory.
The final category (“Untracked Files”) is for files present in the working directory but neither staged for addition nor tracked. This includes files that have been staged for removal, but then re-added without Gitlet’s knowledge. Ignore any subdirectories that may have been introduced, since Gitlet does not deal with them.
The last two sections (modifications not staged and untracked files) are optional. Feel free to leave them blank (leaving just the headers).
- Runtime
- Make sure this depends only on the amount of data in the working directory plus the number of files staged to be added or deleted plus the number of branches.
- Failure cases
- None
- Dangerous?
- No
- Our line count
15
checkout
Checkout is a kind of general command that can do a few different things depending on what its arguments are. There are 3 possible use cases. In each section below, you’ll see 3 bullet points. Each corresponds to the respective usage of checkout.
- Usages
-
java gitlet.Main checkout -- [file name]
java gitlet.Main checkout [commit id] -- [file name]
java gitlet.Main checkout [branch name]
- Descriptions
-
- Takes the version of the file as it exists in the head commit, the front of the current branch, and puts it in the working directory, overwriting the version of the file that’s already there if there is one. The new version of the file is not staged.
- Takes the version of the file as it exists in the commit with the given id, and puts it in the working directory, overwriting the version of the file that’s already there if there is one. The new version of the file is not staged.
- Takes all files in the commit at the head of the given branch, and puts them in the working directory, overwriting the versions of the files that are already there if they exist. Also, at the end of this command, the given branch will now be considered the current branch (HEAD). Any files that are tracked in the current branch but are not present in the checked-out branch are deleted. The staging area is cleared, unless the checked-out branch is the current branch (see Failure cases below).
- Runtimes
-
- Should be linear relative to the size of the file being checked out.
- Should be linear relative to the size of the file being checked out.
- Should be linear with respect to the total size of the files in the commit’s snapshot. Should be constant with respect to any measure involving number of commits. Should be constant with respect to the number of branches.
- Failure cases
-
- If the file does not exist in the previous commit, aborts, printing the error message
File does not exist in that commit.
- If no commit with the given id exists, print
No commit with that id exists.
Else, if the file does not exist in the given commit, printFile does not exist in that commit.
- If no branch with that name exists, print
No such branch exists.
If that branch is the current branch, printNo need to checkout the current branch.
If a working file is untracked in the current branch and would be overwritten by the checkout, printThere is an untracked file in the way; delete it or add it first.
and exit; perform this check before doing anything else.
- If the file does not exist in the previous commit, aborts, printing the error message
- Differences from real git
- Real git does not clear the staging area. Also, it won’t do a checkout that would overwrite or undo changes (additions or removals) that you have staged.
A commit id is, as described earlier, a hexadecimal numeral. A convenient feature of real
git
is that one can abbreviate commits with a unique prefix. For example, one might abbreviatea0da1ea5a15ab613bf9961fd86f010cf74c7ee48
asa0da1e
in the (likely) event that no other object exists with a SHA-1 identifier that starts with the same six digits. You should arrange for the same thing to happen for commit ids that contain fewer than 40 characters. Unfortunately, using shortened ids might slow down the finding of objects if implemented naively (making the time to find a file linear in the number of objects), so we won’t worry about timing for commands that use shortened ids. We suggest, however, that you poke around in a.git
directory (specifically,.git/objects
) and see how it manages to speed up its search. You will perhaps recognize a familiar data structure implemented with the file system rather than pointers.Only version 3 modifies the staging area; otherwise, files scheduled for addition or removal remain so.
- Dangerous?
- Yes!
- Our line counts
-
20
20
20
branch
- Usage
java gitlet.Main branch [branch name]
- Description
- Creates a new branch with the given name, and points it at the current head node. A branch is nothing more than a name for a reference (a SHA-1 identifier) to a commit node. This command does NOT immediately switch to the newly created branch (just as in real
git
). Before you ever call branch, your code should be running with a default branch called “master”. - Runtime
- Should be constant relative to any significant measure.
- Failure cases
- If a branch with the given name already exists, print the error message
A branch with that name already exists.
- Dangerous?
- No
- Our line count
5
All right, let’s see what branch does in detail. Suppose our state looks like this:
Now we call java gitlet.Main branch cool-beans
. Then we get this:
Hmm… nothing much happened. Let’s switch to the branch with java gitlet.Main checkout cool-beans
:
Nothing much happened again?! Okay, say we make a commit now. Modify some files, then java gitlet.Main add...
then java gitlet.Main commit...
.
We were told there would be branching, but all we see is a straight line. What’s going on? Maybe we should go back to our other branch with java gitlet.Main checkout master
:
Now we make a commit…
Phew! So that’s the whole idea of branching. Did you catch what’s going on? All that creating a branch does is to give us a new pointer. At any given time, one of these pointers is considered the currently active pointer, or the head pointer (indicated by *). We can switch the currently active head pointer with checkout [branch name]
. Whenever we commit, it means we add a new commit in front of the currently active head pointer, even if one is already there. This naturally creates branching behavior.
Make sure that the behavior of your branch
, checkout
, and commit
match what we’ve described above. This is pretty core functionality of gitlet that many other commands will depend upon. If any of this core functionality is broken, very many of our autograder tests won’t work!
rm-branch
- Usage
java gitlet.Main rm-branch [branch name]
- Description
- Deletes the branch with the given name. This only means to delete the pointer associated with the branch; it does not mean to delete all commits that were created under the branch, or anything like that.
- Runtime
- Should be constant relative to any significant measure.
- Failure cases
- If a branch with the given name does not exist, aborts. Print the error message
A branch with that name does not exist.
If you try to remove the branch you’re currently on, aborts, printing the error messageCannot remove the current branch.
- Dangerous?
- No
- Our line count
5
reset
- Usage
java gitlet.Main reset [commit id]
- Description
- Checks out all the files tracked by the given commit. Removes tracked files that are not present in the given commit. Moves the current branch’s head pointer and the head pointer to that commit node. See the intro for an example of what happens to the head pointer after using reset. The
[commit id]
may be abbreviated as forcheckout
. The staging area is cleared. The command is essentiallycheckout
of an arbitrary commit that also changes the current branch head pointer. - Runtime
- Should be linear with respect to the total size of files tracked by the given commit’s snapshot. Should be constant with respect to any measure involving number of commits.
- Failure case
- If no commit with the given id exists, print
No commit with that id exists.
If a working file is untracked in the current branch and would be overwritten by the reset, printThere is an untracked file in the way; delete it or add it first.
- Dangerous?
- Yes!
- Differences from real git
- This command is closest to using the
--hard
option, as ingit reset --hard [commit hash]
. - Our line count
10
merge
- Usage
java gitlet.Main merge [branch name]
- Description
- Merges files from the given branch into the current branch. This method is a bit complicated, so here’s a more detailed description:
-
First consider what might be called the split point of the current branch and the given branch. This is their earliest common ancestor in the commit tree.
If the split point is the same commit as the given branch, then we do nothing; the merge is complete, and the operation ends with the message
Given branch is an ancestor of the current branch.
If the split point is the current branch, then the current branch is set to the same commit as the given branch and the operation ends after printing the message
Current branch fast-forwarded.
Otherwise, we continue with the steps below. If you implement remotes (optional), there will be cases where the two branches will not share a common ancestor. In those cases, continue as if the initial commit of the current branch (which is empty) were the split point.
- Any files that have been modified in the given branch since the split point, but not modified in the current branch since the split point should be changed to their versions in the given branch (checked out from the commit at the front of the given branch). These files should then all be automatically staged. To clarify, if a file is “modified in the given branch since the split point” this means the version of the file as it exists in the commit at the front of the given branch has different content from the version of the file at the split point.
- Any files that have been modified in the current branch but not in the given branch since the split point should stay as they are.
- Any files that were not present at the split point and are present only in the current branch should remain as they are.
- Any files that were not present at the split point and are present only in the given branch should be checked out and staged.
- Any files present at the split point, unmodified in the current branch, and absent in the given branch should be removed (and untracked).
- Any files present at the split point, unmodified in the given branch, and absent in the current branch should remain absent.
-
Any files modified in different ways in the current and given branches are in conflict. “Modified in different ways” can mean that the contents of both are changed and different from other, or the contents of one are changed and the other is deleted, or the file was absent at the split point and have different contents in the given and current branches. In this case, replace the contents of the conflicted file with
<<<<<<< HEAD contents of file in current branch ======= contents of file in given branch >>>>>>>
but do not stage the result. Treat a deleted file in a branch as an empty file. Use straight concatenation here. In the case of a file with no newline at the end, you might well end up with something like this:
<<<<<<< HEAD contents of file in current branch======= contents of file in given branch>>>>>>>
This is fine; people who produce non-standard, pathological files because they don’t know the difference between a line terminator and a line separator deserve what they get.
-
Once files have been updated according to the above, and the split point was not the current branch or the given branch, there are two possibilities:
-
If
merge
did not result in any conflicted files, then merge should automatically commit with a messageMerged [current branch name] with [given branch name].
. -
Otherwise, merge should not automatically make a commit. Instead, it should print the message
Encountered a merge conflict.
It is then up to the user to decide how to resolve the conflict (generally by editing the file and then staging it withadd
, or removing it withrm
) and to commit the result.
-
-
- Runtime
- Should be linear in the lengths of the history of each branch plus the total size of new files added in commits in each branch.
- Failure cases
- If there are staged additions or removals present, print the error message
You have uncommitted changes.
If a branch with the given name does not exist, print the error messageA branch with that name does not exist.
If attempting to merge a branch with itself, print the error messageCannot merge a branch with itself.
If merge would generate an error because the commit that it would create would have no changes in it, just let the normal commit error message for this go through. If an untracked file in the current commit would be overwritten or deleted by the merge, printThere is an untracked file in the way; delete it or add it first.
and exit; perform this check before doing anything else. - Dangerous?
- Yes!
- Differences from real git
- There are quite a few. For one, in git, the new commit at the end of merge is special, because it maintains two back pointers remembering which two branches it came from. But gitlet only needs to maintain one normal back pointer on the current branch.
Real git does a more subtle job of merging files, displaying conflicts only in places where both files have changed since the split point.
Real git will force the user to resolve the merge conflicts before committing to complete the merge. Gitlet just allows users to commit to complete the merge whenever they want.
- Our line count
70
Miscellany
Phew! That was a lot of commands. But don’t worry, not all commands are created equal. For each command, the approximate number of lines we used varied from approximately 5 to approximately 70. Merge is a lengthier command than the others, so don’t leave it for the last minute!
Anyway, by now this spec has given you enough information to get working on the project. But to help you out some more, there are a couple of things you should be aware of:
Dealing with Files
This project requires reading and writing of files. In order to do these operations, you might find the classes java.io.File
and java.nio.file.Files
helpful. Actually, you may find various things in the java.io
and java.nio
packages helpful. Be sure to read the gitlet.Utils package for other things we’ve written for you. If you do a little digging through all of these, you might find a couple of methods that will make the io portion of this project much easier! One warning: If you find yourself using readers, writers, scanners, or streams, you’re making things more complicated than need be.
Serialization Details
If you think about gitlet, you’ll notice that you can only run one command every time you run the program. In order to successfully complete your version-control system, you’ll need to remember the commit tree across commands. This means you’ll have to design not just a set of classes to represent internal gitlet
structures during execution, but you’ll need a parallel representation as files within your .gitlet
directories, which will carry across multiple runs of your program.
As indicated earlier, the convenient way to do this is to serialize the runtime objects that you will also need to store permanently in files. In Java, this simply involves implementing the java.io.Serializable
interface:
import java.io.Serializable;
class MyObject implements Serializable { ... }
This interface has no methods; it simply marks its subtypes for the benefit of some special Java classes for performing I/O on objects. For example,
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
MyObject obj = ....;
File outFile = new File(someFileName);
try {
ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream(outFile));
out.writeObject(obj);
out.close();
} catch (IOException excp) { ... }
will convert obj
to a stream of bytes and store them in the file whose name is stored in someFileName
. The object may then be reconstructed with a code sequence such as
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
MyObject obj;
File inFile = new File(someFileName);
try {
ObjectInputStream inp = new ObjectInputStream(new FileInputStream(inFile));
obj = (MyObject) inp.readObject();
inp.close();
} catch (IOException | ClassNotFoundException excp) {
...
obj = null;
}
The Java runtime does all the work of figuring out what fields need to be converted to bytes and how to do so.
Here’s one final example, which uses serialization to convert an object into a byte array, which can then be easily hashed:
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
try {
ByteArrayOutputStream stream = new ByteArrayOutputStream();
ObjectOutputStream objectStream = new ObjectOutputStream(stream);
objectStream.writeObject(obj);
objectStream.close();
return stream.toByteArray();
} catch (IOException excp) {
throw error("Internal error serializing commit.");
}
Note that the above code snippet doesn’t write anything to disk.
There is, however, one annoying subtlety to watch out for: Java serialization follows pointers. That is, not only is the object you pass into writeObject
serialized and written, but any object it points to as well. If your internal representation of commits, for example, represents the parent commit as a pointer to another commit object, then writing the head of a branch will write all the commits (and blobs) in the entire chain of commits into one file, which is generally not what you want. With a little work, you can avoid this problem. One technique is simply not to use Java pointers to refer to commits and blobs in your runtime objects, but instead to use SHA-1 hash strings. You then have a runtime map between these strings and the runtime objects they refer to. You create and fill in this map while gitlet
is running, but never read or write it to a file.
Testing
You will need to have Python installed to run the testing script, so you can find instructions for how to install it here.
As usual, testing is part of the project. We recommend you write your own integration tests for each of the commands, covering all the specified functionality. We will release our own integration tests as the deadline draws near. Also, add unit tests to UnitTest.java
or any other testing classes it invokes in its main
method.
We have provided a testing program that makes it relatively easy to write integration tests: testing/runner.py
. This script interprets testing files with an .in
extension. Running the command
python3 runner.py
from the testing
directory will provide a message documenting the format of these files. Running the command
python3 runner.py --verbose grader/test-name.in
from the testing
directory will run the test called test-name.in
and provide additional information, such as what your program is outputting. The tests follow a very specific format and have special symbols, so it is recommended to read the runner.py
to decode the output. Specifically, this run will allow you to:
- Set up or remove files from a testing directory;
- Run
java gitlet.Main
; - Check the output of gitlet against a specific output or a regular expression describing possible outputs;
- Check the presence, absence, and contents of files.
We’ve provided some examples in the directory testing/grader
. Tests that we release in the future will land in this directory as well.
As usual, we will test your code on Gradescope with the following tests, so do be sure it passes our tests! You can tell us how “it works on my machine” until you are blue in the face; we heartlessly won’t care about that.
Debugging
To debug the integration tests that runner.py
uses, first do the following:
- Go to Run->Edit Configurations.
- Click on the
+
in the top left corner of the pop-up window. - Click on
Remote
. - Feel free to put any name in the
Name
field. - Click OK.
Now, we will need to run runner.py
in “debug” mode. To do so, run the following command:
python3 runner.py --debug grader/test-name.in
You will now be presented with some instructions on how “debug” mode works. Please read the instructions carefully and we will now have a functioning IntelliJ debugger once again! Note, you can also use the --verbose
flag with --debug
at the same time if you would like.
Optional: Going Remote
This project is all about mimicking git’s local features. These are useful because they allow you to backup your own files and maintain multiple versions of them. However, git’s true power is really in its remote features, allowing collaboration with other people over the internet. The point is that both you and your friend could be collaborating on a single code base. If you make changes to the files, you can send them to your friend, and vice versa. And you’ll both have access to a shared history of all the changes either of you have made.
Gitlet’s remote functionality involves five basic remote commands: namely add-remote
, rm-remote
, push
, fetch
, and pull
. Don’t attempt this optional exercise until you have completed the rest of the project.
We’re certainly not expecting everyone to do this exercise. Our priority will be in helping students complete the main project; if you’re doing remotes, we expect you to be able to stand on your own a little bit more than most students.
Adding remote features is not worth any additional credit.
The Commands
A note about the remote commands—all the commands are significantly simplified from their git equivalents, so specific differences from git are usually not notated. Be aware they are there, however.
add-remote
- Usage
java gitlet.Main add-remote [remote name] [name of remote directory]/.gitlet
- Description
- Saves the given login information under the given remote name. Attempts to push or pull from the given remote name will then attempt to use this
.gitlet
directory. By writing, e.g.,java gitlet.Main add-remote other ../testing/otherdir/.gitlet
you can provide tests of remotes that will work from all locations (on your home machine or within the grading program’s software). Always use forward slashes in these commands. Have your program convert all the forward slashes into the path separator character (forward slash on Unix and backslash on Windows). Java helpfully defines the class variablejava.io.File.separator
as this character. - Failure cases
- If a remote with the given name already exists, print the error message:
A remote with that name already exists.
You don’t have to check if the user name and server information are legit. - Dangerous?
- No.
rm-remote
- Usage
java gitlet.Main rm-remote [remote name]
- Description
- Remove information associated with the given remote name. The idea here is that if you ever wanted to change a remote that you added, you would have to first remove it and then re-add it.
- Failure cases
- If a remote with the given name does not exist, print the error message:
A remote with that name does not exist.
- Dangerous?
- No.
push
- Usage
java gitlet.Main push [remote name] [remote branch name]
- Description
- Attempts to append the current branch’s commits to the end of the given branch at the given remote. Details:
This command only works if the remote branch’s head is in the history of the current local head, which means that the local branch contains some commits in the future of the remote branch. In this case, append the future commits to the remote branch. Then, the remote should reset to the front of the appended commits (so its head will be the same as the local head). This is called fast-forwarding.
If the gitlet system on the remote machine exists but does not have the input branch, then simply add the branch to the remote gitlet.
- Failure cases
- If the remote branch’s head is not in the history of the current local head, print the error message
Please pull down remote changes before pushing.
If the remote.gitlet
directory does not exist, printRemote directory not found.
- Dangerous?
- No.
fetch
- Usage
java gitlet.Main fetch [remote name] [remote branch name]
- Description
- Brings down commits from the remote gitlet into the local gitlet. Basically, this copies all commits and blobs from the given branch in the remote repository (that are not already in the current repository) into a branch named
[remote name]/[remote branch name]
in the local.gitlet
(just as in realgit
), changing[remote name]/[remote branch name]
to point to the head commit (thus copying the contents of the branch from the remote repository to the current one). This branch is created in the local repository if it did not previously exist. - Failure cases
- If the remote gitlet does not have the given branch name, print the error message
That remote does not have that branch.
If the remote.gitlet
directory does not exist, printRemote directory not found.
- Dangerous?
- No
pull
- Usage
java gitlet.Main pull [remote name] [remote branch name]
- Description
- Fetches branch
[remote name]/[remote branch name]
as for thefetch
command, and then merges that fetch into the current branch. - Failure cases
- Just the failure cases of
fetch
andmerge
together. - Dangerous?
- Yes!
Acknowledgments
Thanks to Alicia Luengo, Josh Hug, Sarah Kim, Austin Chen, Andrew Huang, Yan Zhao, Matthew Chow, especially Alan Yao, Daniel Nguyen, and Armani Ferrante for providing feedback on this project. Thanks to git for being awesome.
Gitlet was largely inspired by this excellent article by Philip Nilsson.
This project was created by Joseph Moghadam. Modifications for Fall 2015 by Paul Hilfinger.