This tutorial will address the source code management (SCM) tool named Git. By following these steps you should learn about the basic usage of Git, which is required for the whole practical course. Furthermore, Git is a great SCM tool, and it's good to know how to use it. During this tutorial, we will follow Alan Turing's thoughts towards developing the Turing Machine.

More in-depth documentation can be found on the official home page, which mentions books, videos, and links to other tutorials and references.

Creating Commits

  1. Read the Git for Computer Scientists introduction (skip this if you are already familiar with Git). 
  2. For Linux, Git is available in its own package. Windows users can install msysGit. For MacOS, Git is available as part of Xcode; if you cannot install that, use Git for OSX.
  3. Configure your name and email address (will be included in all commits you create):

    Unknown macro: noformat. Click on this message for details.

  4. Create a local repository for the "Turing Project":

    Unknown macro: noformat. Click on this message for details.

    The .git subdirectory contains all history and metadata of the repository. You should not modify it.

  5. Add and commit some content: copy notes.txt to your turing directory.

    Unknown macro: noformat. Click on this message for details.

    The file is now stored in the local history of your repository.

  6. Edit notes.txt:
    1. Replace "fixed" with "infinite" in line 1.
    2. Replace "... (TODO)" with "a finite state machine" in line 4.
  7. View the status of your current working copy:

    Unknown macro: noformat. Click on this message for details.

  8. Mark the modified file to include it in the next commit, then view the status again and compare with the previous output:

    Unknown macro: noformat. Click on this message for details.

  9. Commit the modified content to your local repository and view the status:

    Unknown macro: noformat. Click on this message for details.

After the preceding steps you have two commits in your local repository, each with one file in the index. You have different commands for viewing these commits:

Unknown macro: noformat. Click on this message for details.

Note that each commit is identified by a looong hash value, but it is possible to use only a prefix when referencing them (if the prefix is not ambiguous): the example above uses 52e2d49 to identify the second commit. The commit hashes in your repository will be different from those seen in this tutorial, because the name of the author and the exact time of committing is also considered in the hash calculation. Also try the command gitk to get an overview of your commits (a better alternative available for MacOS is GitX).

Branching and Merging

In the previous section you have created two commits on the default branch, which is named master. Now you will create a new branch and commit there, thus adding complexity to the commit graph.

  1. Create a branch with name sketches:

    Unknown macro: noformat. Click on this message for details.

  2. View the list of branches:

    Unknown macro: noformat. Click on this message for details.

    The star reveals that you are still on the old master branch.

  3. Switch to the new branch:

    Unknown macro: noformat. Click on this message for details.

    It is also possible to create a branch and switch immediately to it using the option -b of git checkout.

  4. Download and add the new file examples.txt:

    Unknown macro: noformat. Click on this message for details.

    Inspecting the commit graph with gitk (or another graphical viewer) you see that the sketches branch now has three commits, while master is still at the second commit.

  5. Merging the sketches branch into master means that all changes that have been made in sketches are also applied to master. In order to perform this merge, we have to check out the master branch first:

    Unknown macro: noformat. Click on this message for details.

    This was a fast-forward merge: since the master branch was completely contained in the sketches branch, the merge could be done by simply changing the head pointer of master to be the same as the head of sketches.

  6. Now add the line "see some examples in 'examples.txt'" to the file notes.txt and commit this change in the current branch:

    Unknown macro: noformat. Click on this message for details.

  7. Switch back to the sketches branch and commit something there. Note that the checkout command modifies your working copy, hence you have to update your text editor's content if you opened one of the files.

    Unknown macro: noformat. Click on this message for details.

    Add the line "Move one step left:" and write an updated version of the tape with tape head in the file examples.txt, then commit.

    Unknown macro: noformat. Click on this message for details.

    Now our two branches have diverged, which means that they cannot be fast-forwarded anymore.

  8. Merge the master branch into sketches:

    Unknown macro: noformat. Click on this message for details.

    Using gitk you can see that a new commit was created that has two parent commits. Such a commit is called merge commit and is done automatically when a non-fast-forward merge is applied.

  9. Add a commit in each of the two branches using the commands you have already learned.

    1. Check out master.
    2. Insert the following line after line 4 of notes.txt:

      Unknown macro: noformat. Click on this message for details.

    3. Commit the change to notes.txt.
    4. Check out sketches (make sure to refresh your text editor so notes.txt is reset to its previous state, without the change made above).
    5. Insert the following line after line 4 of notes.txt:

      Unknown macro: noformat. Click on this message for details.

    6. Commit the change to notes.txt.
  10. Merge the master branch into the current branch (sketches):

    Unknown macro: noformat. Click on this message for details.

    As expected, the branches could not be merged automatically, since both branches modified the same line in the same file.

  11. Use the status command to see the list of affected files:

    Unknown macro: noformat. Click on this message for details.

  12. The modified notes.txt should now contain the following text:

    Unknown macro: noformat. Click on this message for details.

    The upper line is the one committed to sketches, while the lower line was committed to master. You have to resolve the conflict by editing the file. In this case the conflict is resolved by keeping both lines in arbitrary order, that means you should just remove the conflict markers (lines 5, 7, and 9 in notes.txt).

  13. Use the add command to mark notes.txt as resolved. Entering git commit without a message will open a text editor with an automatically created commit message. Just close the editor, and the merge commit is completed:

    Unknown macro: noformat. Click on this message for details.

The gitk tool should now display this graph:

turing-graph-01.png

 

Tags:
Created by msp on 2012/10/15 11:15