Difference between revisions of "Git"

From CSE330 Wiki
Jump to navigationJump to search
Line 152: Line 152:
 
In SourceTree, press the "Checkout" button, and choose the revision or branch that you want to checkout; see the screenshot for an example.
 
In SourceTree, press the "Checkout" button, and choose the revision or branch that you want to checkout; see the screenshot for an example.
  
'' under construction ''
+
We will now make a revision to the Banana joke:
  
<source lang="bash">$ git checkout -b branchB</source>
+
* '''banana.txt:''' What would you call two bananas? A pair of slippers!
 +
 
 +
Let's change the file, stage it, and see the current status.
 +
 
 +
<source lang="bash">
 +
$ git add -A
 +
$ git status
 +
# On branch master
 +
# Changes to be committed:
 +
#  (use "git reset HEAD <file>..." to unstage)
 +
#
 +
# modified:  banana.txt
 +
#
 +
</source>
 +
 
 +
We will now create another new branch, and commit our changes to it.
 +
 
 +
<source lang="bash">
 +
$ git checkout -b apple-branch
 +
$ git commit -m "First Banana Commit"
 +
[banana-branch f876aac] First Banana Commit
 +
1 file changed, 1 insertion(+), 1 deletion(-)
 +
</source>
 +
 
 +
We can see all branches using '''git branch -v''':
 +
 
 +
<source lang="bash">
 +
$ git branch -v
 +
  apple-branch  c2c1738 First Apple Commit
 +
* banana-branch f876aac First Banana Commit
 +
  master        b770092 Initial Commit
 +
</source>
 +
 
 +
However, this is where a GUI like SourceTree really comes in handy.  Here is what you now see in the Log View:
 +
 
 +
[[File:SourceTree-ViewBranches.jpg]]
 +
 
 +
Nifty!
 +
 
 +
Okay, so now we want to take the two newest Apple and Banana jokes and merge them both back into '''master'''.  Let's first merge in '''banana-branch'''.  We can do this using the '''merge''' command:
 +
 
 +
<source lang="bash">
 +
$ git checkout master
 +
Switched to branch 'master'
 +
$ git merge banana-branch
 +
Updating b770092..f876aac
 +
Fast-forward
 +
banana.txt | 2 +-
 +
1 file changed, 1 insertion(+), 1 deletion(-)
 +
</source>
 +
 
 +
'''''WHEN YOU MERGE, YOU TAKE THE CHANGES FROM THE SPECIFIED BRANCH AND MERGE THEM INTO THE CURRENT WORKING BRANCH.'''''  It is easy to get this mixed up.  Think of it this way: the currently "open" branch is the only one that will et changed when you perform the merge.
 +
 
 +
[[File:SourceTree-Merge.jpg|400px|thumb|right|Merging '''apple-branch''' into '''master''']]
 +
 
 +
We now have the original Apple joke and the new Banana joke in the '''master''' branch.
 +
 
 +
Now let's merge in '''apple-branch'''.  We can use the command line to do it, but let's see how it works in SourceTree.  First press the "Merge" button in the toolbar.  You will see a window like the one shown in the screenshot to the right.  If everything looks good, press "OK" to perform the merge.
 +
 
 +
We now have both of the new jokes in our '''master''' branch:
 +
 
 +
<source lang="bash">
 +
$ cat apple.txt
 +
What kind of apple has a short temper?  A crab apple!
 +
$ cat banana.txt
 +
What would you call two bananas? A pair of slippers!
 +
$ cat carrot.txt
 +
How do you make a soup rich? Add 14 carats to it!
 +
</source>
 +
 
 +
Okay, so we are now happy with our Apple joke.  Let's ''close'' that branch so that it doesn't show up in the list any more:
 +
 
 +
<source lang="bash">
 +
$ git branch -d apple-branch
 +
Deleted branch apple-branch (was c2c1738).
 +
$ git branch -v
 +
  banana-branch f876aac First Banana Commit
 +
* master        5159c4e Merge branch 'apple-branch'
 +
</source>
 +
 
 +
Let's switch back to our banana branch, make a new joke, and commit that change to the banana branch:
 +
 
 +
<source lang="bash">
 +
$ git checkout banana-branch
 +
Switched to branch 'banana-branch'
 +
$ echo 'What is the easiest way to make a banana split? Cut it in half!' > banana.txt
 +
$ git commit -am 'Further revising our Banana joke'
 +
[banana-branch cf6a894] Further revising our Banana joke
 +
1 file changed, 1 insertion(+), 1 deletion(-)
 +
</source>
 +
 
 +
Remember that '''git commit -a''' is shorthand for '''git add -A''' followed by a plain '''git commit''' in most cases.
 +
 
 +
But guess what: we changed our mind again!  Let's try an ''even better'' banana joke.  This time, I made the change using GUI tools:
 +
 
 +
# Open '''banana.txt''' in your favorite text editor and make the joke say, "Why are bananas never lonely? Because they hang around in bunches!"
 +
# In SourceTree, press "Commit" in the toolbar
 +
# Drag the file to the "Stage" pane, type a commit message like "The best banana joke ever!", and press "Commit"
 +
 
 +
Finally, let's merge our greatest Banana joke into '''master''' and close up '''banana-branch'''.  Here is how to do it in SourceTree:
 +
 
 +
# Checkout '''master'''
 +
# Press "Merge" in the toolbar
 +
# Select '''banana-branch''' and press "Merge"
 +
# To delete the branch, press "Branch" and then "Delete Branch" in the toolbar
 +
# Select '''banana-branch''' only, press "Delete Branches", and when asked to confirm, press "OK"
 +
 
 +
We now have the three newest jokes in our '''master''' branch, and all other branches have been cleaned up.
 +
 
 +
After performing all of the steps in this example, here is how the tree looks in SourceTree:
 +
 
 +
[[File:SourceTree-Tree.jpg]]
 +
 
 +
[[Category:Module 5]]

Revision as of 04:22, 1 April 2013

Git is a distributed version control system. It enables you to:

  1. Keep track of revisions to your files
  2. Push and pull your revisions to other computers or servers
  3. Collaborate with other people on the same project

Subversion is the version control system you used in CSE 132. However, Subversion does not have the same agility of Git in terms of local revisions, staging, and collaboration. This guide aims to get you up to speed with the power of Git for multi-developer projects.

Commits

When you want to create a "snapshot" of your project, what you do in Git is called a commit. The commit finds all files under version control, looks for ones that have been changed, and records the changes in a local archive. You learned how to perform a commit in SourceTree in Module 2.

If you need to determine what files have been changed since the last commit, you gan use Git's status command:

$ git status

In SourceTree, the results of git status are displayed nicely in the "File Status View".

Staging

Staging a file in SourceTree

Up to this point, you have been using SourceTree to automatically commit all changes. However, Git enables you to not commit every single file if you don't want to. This is where staging comes into play.

To add a file to the stage, use the add command:

$ git add <filename>

Then, when you run git commit, only those files that have been staged will be updated.

Note: git commit -a commits all files, whether or not they had been staged. git commit (without the -a) only commits those files in the staging area.

Staging in SourceTree

Staging in SourceTree is very intuitive. However, before you can use this feature, you need to turn it on. (We had you turn of the staging feature in Module 2.)

  1. Go to the SourceTree preferences.
  2. Enter the Git pane.
  3. Check the box that says "Use the staging area".

You should now be able to use the staging area! In the "File Status View", you can drag and drop files back and forth between Staged and Unstaged. See the screenshot for an example.

Branches and Merging

Git enables you to work on different features of the same software suite in isolation from each other. The way to do this is using branches.

To create a new branch, use the checkout -b command:

$ git checkout -b my-new-branch

Now, when you next commit, you will be committing to the my-new-branch branch rather than the default master branch.

Checking out a new branch in SourceTree

To switch the working copy over to a different branch, use the checkout command:

$ git checkout my-existing-branch

See the screenshot for how to checkout a branch in SourceTree.

To merge changes from a different branch to the current working copy, use the merge command:

$ git merge my-existing-branch

After you merge, if you wish to terminate a branch, use the branch -d command:

$ git branch -d my-existing-branch

This will all make more sense when we go through an example. We will also be using SourceTree in the example.

Example: Staging and Branches

Suppose I have three files under version control: apple.txt, banana.txt, and carrot.txt. The contents is like so (Thanks to Sumit Khemka for the humor):

  • apple.txt: How do you make an apple turnover? Push it downhill!
  • banana.txt: What is a ghost's favorite fruit? A boonanaa!
  • carrot.txt: How do you make a soup rich? Add 14 carats to it!

All files have been committed to the HEAD, which is by default the master branch:

$ git add -A; git commit
...
$ git status
# On branch master
nothing to commit, working directory clean

Now, let's change the Apple joke, and keep the Banana and the Carrot the same:

  • apple.txt: What kind of apple has a short temper? A crab apple!

We can see in Git and SourceTree that there is one file changed: apple.txt.

$ git status
# On branch master
# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#	modified:   apple.txt
#
Creating a new branch using SourceTree

Let's go ahead and stage our file:

$ git add apple.txt

In SourceTree, drag a file from the "working tree" pane to the "files staged in index" pane to stage the file.

But now, instead of committing this change directly to our master branch, let's make a new branch, and let's call it apple-branch.

In SourceTree, press the "Branch" button to bring up a little dialog box. See the screenshot for an example.

If we were using the command line, the command would be:

$ git checkout -b apple-branch

Here is what we now see when we run git status:

$ git status
# On branch apple-branch
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#	modified:   apple.txt
#

Let's now go ahead and commit the changes:

Our current tree structure in SourceTree
$ git commit -m "First Apple Commit"
[apple-branch c2c1738] First Apple Commit
 1 file changed, 1 insertion(+), 1 deletion(-)

In SourceTree, run the commit as you have been doing in Modules 2-4.

Let's now make a second branch. This branch is going to be rooted at the current version of the master branch, which of course is still the three original jokes. To switch back to the master branch, we use the checkout command:

$ git checkout master
Switched to branch 'master'

In SourceTree, press the "Checkout" button, and choose the revision or branch that you want to checkout; see the screenshot for an example.

We will now make a revision to the Banana joke:

  • banana.txt: What would you call two bananas? A pair of slippers!

Let's change the file, stage it, and see the current status.

$ git add -A
$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#	modified:   banana.txt
#

We will now create another new branch, and commit our changes to it.

$ git checkout -b apple-branch
$ git commit -m "First Banana Commit"
[banana-branch f876aac] First Banana Commit
 1 file changed, 1 insertion(+), 1 deletion(-)

We can see all branches using git branch -v:

$ git branch -v
  apple-branch  c2c1738 First Apple Commit
* banana-branch f876aac First Banana Commit
  master        b770092 Initial Commit

However, this is where a GUI like SourceTree really comes in handy. Here is what you now see in the Log View:

SourceTree-ViewBranches.jpg

Nifty!

Okay, so now we want to take the two newest Apple and Banana jokes and merge them both back into master. Let's first merge in banana-branch. We can do this using the merge command:

$ git checkout master
Switched to branch 'master'
$ git merge banana-branch
Updating b770092..f876aac
Fast-forward
 banana.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

WHEN YOU MERGE, YOU TAKE THE CHANGES FROM THE SPECIFIED BRANCH AND MERGE THEM INTO THE CURRENT WORKING BRANCH. It is easy to get this mixed up. Think of it this way: the currently "open" branch is the only one that will et changed when you perform the merge.

Merging apple-branch into master

We now have the original Apple joke and the new Banana joke in the master branch.

Now let's merge in apple-branch. We can use the command line to do it, but let's see how it works in SourceTree. First press the "Merge" button in the toolbar. You will see a window like the one shown in the screenshot to the right. If everything looks good, press "OK" to perform the merge.

We now have both of the new jokes in our master branch:

$ cat apple.txt 
What kind of apple has a short temper?  A crab apple!
$ cat banana.txt 
What would you call two bananas? A pair of slippers!
$ cat carrot.txt 
How do you make a soup rich? Add 14 carats to it!

Okay, so we are now happy with our Apple joke. Let's close that branch so that it doesn't show up in the list any more:

$ git branch -d apple-branch
Deleted branch apple-branch (was c2c1738).
$ git branch -v
  banana-branch f876aac First Banana Commit
* master        5159c4e Merge branch 'apple-branch'

Let's switch back to our banana branch, make a new joke, and commit that change to the banana branch:

$ git checkout banana-branch
Switched to branch 'banana-branch'
$ echo 'What is the easiest way to make a banana split? Cut it in half!' > banana.txt
$ git commit -am 'Further revising our Banana joke'
[banana-branch cf6a894] Further revising our Banana joke
 1 file changed, 1 insertion(+), 1 deletion(-)

Remember that git commit -a is shorthand for git add -A followed by a plain git commit in most cases.

But guess what: we changed our mind again! Let's try an even better banana joke. This time, I made the change using GUI tools:

  1. Open banana.txt in your favorite text editor and make the joke say, "Why are bananas never lonely? Because they hang around in bunches!"
  2. In SourceTree, press "Commit" in the toolbar
  3. Drag the file to the "Stage" pane, type a commit message like "The best banana joke ever!", and press "Commit"

Finally, let's merge our greatest Banana joke into master and close up banana-branch. Here is how to do it in SourceTree:

  1. Checkout master
  2. Press "Merge" in the toolbar
  3. Select banana-branch and press "Merge"
  4. To delete the branch, press "Branch" and then "Delete Branch" in the toolbar
  5. Select banana-branch only, press "Delete Branches", and when asked to confirm, press "OK"

We now have the three newest jokes in our master branch, and all other branches have been cleaned up.

After performing all of the steps in this example, here is how the tree looks in SourceTree:

SourceTree-Tree.jpg