Skip to content

francisLee777/finished-mit6.5830-go-db-hw-2023

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

6.5830/6.5831 Labs

Git repository for labs in 6.5830/6.5831.

We will be using git, a source code control tool, to distribute labs in 6.5830/6.5831. This will allow you to incrementally download the code for the labs, and for us to push any hot fixes that might be necessary.

You will also be able to use git to commit and backup your progress on the labs as you go. Course git repositories will be hosted as a repository in GitHub, a website that hosts runs git servers for thousands of open source projects. In our case, your code will be in a private repository that is visible only to you and course staff.

This document describes what you need to do to get started with git, and also download and upload 6.5830/6.5831 labs via GitHub.

If you are not a registered student at MIT, you are welcome to follow along, but we ask you to please keep your solution PRIVATE and not make it publicly available

Contents

There are numerous guides on using Git that are available. They range from being interactive to just text-based. Find one that works and experiment; making mistakes and fixing them is a great way to learn. Github has compiled a list of such resources here.

If you have no experience with git, you may find this Missing Semester lecture helpful. And if you want to build an intuition with git commands, try this card game.

Now that you have a basic understanding of Git, it's time to get started with GitHub.

  1. Install git. (See below for suggestions).

  2. If you don't already have an account, sign up for one.

The instructions are tested on bash/linux environments. Installing git should be a simple apt-get install, yum install, or similar.

Instructions for installing git on Linux, OSX, or Windows can be found at GitBook: Installing.

If you are using an IDE like IntelliJ/VSCode, it likely comes with git integration. The set-up instructions below may be slightly different than the command line instructions listed, but will work for any OS. Detailed instructions can be found in IntelliJ Help, VSCode Version Control Guide, and/or VSCode Github Guide.

You should have Git installed from the previous section.

  1. The first thing we have to do is to clone the current lab repository by issuing the following commands on the command line:

     $ git clone https://github.com/MIT-DB-Class/go-db-hw-2023.git

    Now, every time a new lab or patch is released, you can

     $ git pull

    to get the latest.

    That's it. You can start working on the labs! That said, we strongly encourage you to use git for more than just downloading the labs. In the rest of the guide we will walk you through on how to use git for version-control during your own development.

  2. Notice that you are cloning from our repo, which means that it will be inappropriate for you to push your code to it. If you want to use git for version control, you will need to create your own repo to write your changes to. Do so by clicking 'New' on the left in github, and make sure to choose Private when creating, so others cannot see your code! Now we are going to change the repo we just checked out to point to your personal repository.

  3. By default the remote called origin is set to the location that you cloned the repository from. You should see the following:

     $ git remote -v
         origin https://github.com/MIT-DB-Class/go-db-hw-2023.git (fetch)
         origin https://github.com/MIT-DB-Class/go-db-hw-2023.git (push)

    We don't want that remote to be the origin. Instead, we want to change it to point to your repository. To do that, issue the following command:

     $ git remote rename origin upstream

    And now you should see the following:

     $ git remote -v
         upstream https://github.com/MIT-DB-Class/go-db-hw-2023.git (fetch)
         upstream https://github.com/MIT-DB-Class/go-db-hw-2023.git (push)
  4. Lastly we need to give your repository a new origin since it is lacking one. Issue the following command, substituting your athena username:

     $ git remote add origin https://github.com/[your-username]/[your-repo]

    If you have an error that looks like the following:

    Could not rename config section 'remote.[old name]' to 'remote.[new name]'
    

    Or this error:

    fatal: remote origin already exists.
    

    This appears to happen to some depending on the version of Git being used. To fix it, just issue the following command:

    $ git remote set-url origin https://github.com/[your-username]/[your-repo]

    This solution was found from StackOverflow thanks to Cassidy Williams.

    For reference, your final git remote -v should look like following when it's setup correctly:

     $ git remote -v
         upstream https://github.com/MIT-DB-Class/go-db-hw-2023.git (fetch)
         upstream https://github.com/MIT-DB-Class/go-db-hw-2023.git (push)
         origin https://github.com/[your-username]/[your-repo] (fetch)
         origin https://github.com/[your-username]/[your-repo] (push)
  5. Let's test it out by doing a push of your main branch to GitHub by issuing the following:

     $ git push -u origin main

    You should see something like the following:

    Counting objects: 59, done.
    Delta compression using up to 4 threads.
    Compressing objects: 100% (53/53), done.
    Writing objects: 100% (59/59), 420.46 KiB | 0 bytes/s, done.
    Total 59 (delta 2), reused 59 (delta 2)
    remote: Resolving deltas: 100% (2/2), done.
    To git@github.com:[your-repo].git
     * [new branch]      main -> main
    Branch main set up to track remote branch main from origin.
    
  6. That last command was a bit special and only needs to be run the first time to setup the remote tracking branches. Now we should be able to just run git push without the arguments. Try it and you should get the following:

     $ git push
       Everything up-to-date

If you don't know Git that well, this probably seemed very arcane. Just keep using Git and you'll understand more and more. You aren't required to use commands like commit and push as you develop your labs, but will find them useful for debugging. We'll provide explicit instructions on how to use these commands to actually upload your final lab solution.

(You don't need to follow these instructions until Lab 1.)

Pulling in labs that are released or previous lab solutions should be easy as long as you set up your repository based on the instructions in the last section.

  1. All new labs will be posted to the labs repository in the class organization.

    Check it periodically as well as Piazza's announcements for updates on when the new labs are released.

  2. Once a lab is released, pull in the changes from your godb directory:

     $ git pull upstream main

    OR if you wish to be more explicit, you can fetch first and then merge:

     $ git fetch upstream
     $ git merge upstream/main

    Now commit to your main branch:

    $ git push origin main
  3. If you've followed the instructions in each lab, you should have no merge conflicts. If you encounter merge conflicts, please reach out to course staff.

We will be using Gradescope to autograde all programming assignments. You should have all been invited to the class instance; if not, please check Piazza for an invite code. If you are still having trouble, let us know and we can help you set up. You may submit your code multiple times before the deadline; we will use the latest version as determined by Gradescope. Place the write-up in a file called lab1-writeup.txt with your submission.

If you are working with a partner, only one person needs to submit to Gradescope. However, make sure to add the other person to your group. Also note that each member must have their own writeup. Please add your Kerberos username to the file name and in the writeup itself (e.g., lab1-writeup-username1.txt and lab1-writeup-username2.txt).

The easiest way to submit to Gradescope is with .zip files containing your code. On Linux/macOS, you can do so by running the following command:

$ zip -r submission.zip godb/ lab1-writeup.txt

# If you are working with a partner:
$ zip -r submission.zip godb/ lab1-writeup-username1.txt lab1-writeup-username2.txt

Please submit (friendly!) bug reports to 6.5830-staff@mit.edu. When you do, please try to include:

  • A description of the bug.
  • A .go file with test functions that we can drop into the godb directory, compile, and run.
  • A .txt file with the data that reproduces the bug.

If you are the first person to report a particular bug in the code, we will give you a candy bar!

75% of your grade will be based on whether or not your code passes the system test suite we will run over it. These tests will be a superset of the tests we have provided. Before handing in your code, you should make sure it produces no errors (passes all of the tests) when you run go test in the godb directory.

Important: before testing, Gradescope will replace the go test files with our version of these files. This means you should make sure that your code passes the unmodified tests.

You should get immediate feedback and error outputs for failed visible tests (if any) from Gradescope after submission. There may exist several hidden tests (a small percentage) that will not be visible until after the deadline. The score given will be your grade for the autograded portion of the assignment. An additional 25% of your grade will be based on the quality of your writeup and our subjective evaluation of your code. This part will also be published on Gradescope after we finish grading your assignment.

We had a lot of fun designing this assignment, and we hope you enjoy hacking on it!

Git is a distributed version control system. This means everything operates offline until you run git pull or git push. This is a great feature.

However, one consequence of this is that you may forget to git push your changes. This is why we strongly suggest that you check GitHub to be sure that what you want to see matches up with what you expect.

If at any point you need help with setting all this up, feel free to reach out to one of the TAs or the instructor. Their contact information can be found on the course homepage.

Releases

No releases published

Packages

No packages published

Languages