Git Product home page Git Product logo

intro_to_git's Introduction

Deliverable Due Date
Base Installation (nothing to submit) Monday, February 7th at 1:00PM EST
Intro to Linux Gradescope Submission Monday, February 7th at 1:00PM EST
Intro to Git Gradescope Submission Monday, February 7th at 1:00PM EST

Intro to Git

Introduction

This lab is intended to give you a basic overview of Git. Learning how to use Git will help you work and delegate with your team efficiently. If you are already familiar with Git, feel free to start with the exercises and use the reference as you find it necessary. If this is your first time using git, we recommend that you at least skim through the reference before you start on the exercises. This way you will have a good idea of where things are going into the exercises.

If you wished for more basic, step by step introduction to Git to bring you up to speed, there are plenty of tutorials online as text or as Youtube videos. Your responsibility is to make sure that you understand what you can do with any of the operations you will be performing. All of these operations will become relevant soon and mastering them now will save you a lot of time and energy in the near future. The following are some useful references.

  1. Pro Git - Free Reference
  2. Git Cheatsheet
  3. Interactive Git Visualization
  4. Git Tutorial for Beginners - Video
  5. Learn Git Branching - Interactive

Although you're encouraged to collaborate with others if you are stuck, the lab should be completed individually so you can get practice with skills that will be essential later on in the course when you are in teams. If you have questions, please post on Piazza.

As with other terminal commands, you can use man pages to get information about git commands as such: to get the man page for the command git push you can type man git-push in the terminal. (Also check out man giteveryday and man gittutorial.)

Submission

Once you have completed the exercises and problems below, you will submit a zip file containing your repository (rss_lab1.zip) to Gradescope under Lab 1B: Intro To Git.

Please do not download your repository from github.com as a zip; zip a local clone instead.

GitHub

All git-controlled projects in this class, including lab instructions and support software, will be available on GitHub, an online service for hosting git repositories.

References

The following are selected chapters from Pro Git, feel free to read the entire manual. Also visit Git command reference to get help with commands and command syntax.

  1. Getting Help
  2. Getting a Git Repository
  3. Recording Changes to the Repository
  4. Viewing the Commit History
  5. Undoing Things
  6. Working with Remotes
  7. Branches in a Nutshell
  8. Basic Branching and Merging
  9. Branch Management
  10. Branching Workflows
  11. Remote Branches
  12. Stashing and Cleaning

Git Exercises

Sign up for GitHub

Visit github.com to create a Github Account if you do not have one already.

Configure Git Locally

Run the following commands (in your Debian racecar environment) to configure git

git config --global user.name <YOUR NAME>
git config --global user.email <YOUR EMAIL ADDRESS>

Github will use that username and email to identify your contributions (git commits).

Generate your SSH Keys

Follow the steps to enable your computer to interact with your github account via the Secure Shell. Your SSH key will allow you to authenticate with Github so that you can make changes.

  1. Follow the instructions to generate your SSH key and add it to the ssh-agent. Make sure to remember your passphrase if you have entered one. We recommend that you skip the passphrase (just hit enter).
  2. Follow the instructions to add your SSH key to your Github account.

Create a repository

Follow these steps to create a new repository containing your linux_exercise.txt file from Lab 1A using the terminal.

  1. Follow steps 1-6 in these instructions to create a private repository on github.com and call it rss_lab1. Note: Make sure that you are selecting the private option in step 4.
  2. After creating the repository you will be presented with a new page that list an SSH link (not HTTPS) under the blue "Quick Setup" section. It should have the form [email protected]:USERNAME/rss_lab1.git. Clone that URL to your computer with the git clone command. Once files have been added to the repo, you can always access this URL from the green "Clone or Download" button.
  3. Afterwards, copy your completed linux_exercise.txt (from Lab 1A) into your cloned repository.
  4. Follow the instructions to add and commit your changes (which are the addition of linux_exercise.txt), and push them to the origin remote (this is the copy of your rss_lab1 repo hosted on GitHub).

Tip: If you get lost along the way and would like to see a helpful summary of what the current state of your repo is, git status will provide that.

Problem 1: Commit and push starter files

  1. Clone the intro_to_git repository
git clone https://github.com/mit-rss/intro_to_git.git
  1. Copy the files simulate_conflict.sh, bot.sh, random_file_generator.py, and dream_within_a_dream.txt into your local copy of rss_lab1 (which you created above).
  2. Add, commit and push these files to the remote using the terminal.
  3. Write your commit history to a file called history.txt using the terminal (hint: Use redirections from the Linux terminal section and git log).
  4. Add history.txt, commit your changes, and push.
  5. Verify that the files have been pushed by looking at the remote repo on github.com

Problem 2: Conflicts and conflict resolution

In this class, you will frequently run into conflicts since you'll be working with a team in a short span of time. In this section, we will train you to handle some of the tricky situations you can get into using Git.

In each exercise, you will run into a problem. We will try to help you understand what the problem is, and then suggest places and commands to look into for a solution. Your task is to use the clues to fix the problem and help yourself proceed to the next exercise.

Playing with commits

  1. Run:
bash simulate_conflict.sh

This will create an independent copy of your rss_lab1 repo, and generate a random file, simulating a teammate doing work. At the same time, it will generate a random file in your local copy of the repo, simulating you doing some work on the same file. However, your virtual teammate already pushed their changes to the shared MIT GitHub repo. This will create a situation where you have some work in your local repo that is different from what is present in the GitHub remote.

  1. Cache your remote (hint: git fetch). This will download any changes from the GitHub remote to your local repo without attempting to merge them.
  2. Stage random.txt for commit (don’t commit yet)
  3. Run
git diff origin/main

and write the output to a file called diff.txt.

  1. Stage diff.txt for a commit
  2. Commit your changes and try pushing. Git should reject your push since the remote repository has changes that are not present in the local. If you carefully read the displayed message, you should see about the same thing. Try the following two solutions.

Stash and pull

One of the approaches to resolving merge conflicts is to stash your local changes then pull the remote main branch. In this section, we ask you to use this method rather than other resolution strategies.

Using this resource as needed, complete the following steps to resolve the conflicts.

  1. Perform a command that "undoes" the commit, as if you had never ran it in the first place. I.e. the commit message is not in the history and the changed files are staged. (Hint: involves git reset)
  2. Stash your changes.
  3. Pull the remote.
  4. Pop the stash and inspect the resulting random.txt file.
  5. Resolve the conflict by keeping both changes on the file (remove the conflict markers).
  6. Commit the addition of random.txt and diff.txt, and push your changes to the remote.

Now take a look your commit history (git log), and compare it to the log file from the setup. There should be an extra commit with message “The bot is committing random changes...”. This entry represents the incompatible changes to random.txt that the bot simulating your teammate commited at the same time as you changed random.txt.

Merge

Another solution to try is to merge the two branches using git merge, as discussed in the reference. Again, complete the following steps.

  1. Repeat the steps 1-6 from "Playing with commits" above (do not repeat "Stash and Pull").
  2. Merge the changes using git merge
  3. Again, resolve the conflict by keeping your changes only this time. You may use diff.txt to help separate the changes.
  4. Add, commit and push your changes (your resolution of the merge conflict).

Usually git merge will be the more straightforward conflict resolution approach, but the stash and pull approach can be very useful in situations where you would like to first examine and test someone else's contributions. Also keep in mind that git pull is equivalent to git fetch followed by git merge FETCH_HEAD, so performing a git pull when incompatible changes exist in your remote will automatically lead you to the situation expored in the Merge section above.

Problem 3: Branching

The reference discusses the philosophy behind branching and a couple of branching commands. In this section, we ask you practice branching by completing the following two exercises.

Branch and merge

  1. Create a new branch based on main and call it whatever you want.
  2. Switch to the new branch and make sure that you’re in that branch.
  3. Push your branch to the remote. You should see a message that your new branch is now tracking a remote branch of the same name.
  4. Run
python random_file_generator.py --file random2.txt
  1. Add, commit and push random2.txt.
  2. Merge your branch with the main branch. (hint: git merge) There should be no conflicts, so Git will be able to automatically perform a "fast-forward" merge without your intervention. NOTE: Do not undo any of the commits performed so far!
  3. Finally, push the changes you just created by merging the two branches to the remote.

intro_to_git's People

Contributors

nadyabalabanska avatar lukaslaobeyer avatar mntan3 avatar sabinach avatar liamack27 avatar vk-chen avatar juansala avatar sportdeath avatar lucacarlone avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.