Introduction To Git - gitTutorial
Introduction To Git - gitTutorial
https://xkcd.com/1597/
1
Contents
1 Git Overview 2
1.1 Registering . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.2 Installing Git on Your Machine . . . . . . . . . . . . . . . . . . . . . . . 4
1.3 Creating a Repository on Github . . . . . . . . . . . . . . . . . . . . . . 5
6 Resources 18
1 Git Overview
As you develop software and make changes, add features, x bugs, etc. it is often useful
to have a mechanism to keep track of changes and to ensure that your code base and
artifacts are well-protected by being stored on a reliable server (or multiple servers).
This allows you access to historic versions of your application’s code in case something
breaks or to roll-back to a previous version if a critical bug is found.
The solution is to use a revision control system that allows you to check-in changes to
a code base. It keeps track of all changes and allows you to branch a code base into a
separate copy so that you can develop features or enhancements in isolation of the main
code base (often called the trunk in keeping with the tree metaphor). Once a branch
is completed (and well-tested and reviewed), it can then be merged back into the main
trunk and it becomes part of the project.
You may already be familiar with similar online (or cloud) storage systems such as
2
Google Drive or Dropbox that allow you to share and even collaborate on documents
and other les. However, a version control system is a lot more. It essentially keeps
track of all changes made to a project and allows users to work in large teams on very
complex projects while minimizing the conicts between changes. These systems are
not only used for organizational and backup purposes, but are absolutely essential when
developing software as part of a team. Each team member can have their own working
copy of the project code without interfering with other developer’s copies or the main
trunk. Only when separate branches have to be merged into the trunk do conicting
changes have to be addressed. Otherwise, such a system allows multiple developers to
work on a very complex project in an organized manner.
There are several widely used revision control systems including CVS (Concurrent Ver-
sions System), SVN (Apache Subversion), and Git. CVS is mostly legacy and not as
widely used anymore. SVN is a centralized system: there is a single server that acts as
the main code repository. Individual developers can check out copies and branch copies
(which are also stored in the main repository). They also check all changes into the
main repository.
Git, however, is a decentralized system; multiple servers can act as repositories, but
each copy on each developer’s own machine is also a complete revision copy. Code
commits are committed to the local repository. Merging a branch into another requires
a push/pull request. Decentralizing the system means that anyone’s machine can act as
a code repository and can lead to wider collaboration and independence since dierent
parties are no longer dependent on one master repository.
Git itself is a version control system that can be installed on any server (UNL has a Git
repository setup at https://git.unl.edu). However, we’ll primarily focus on Github
3
(https://github.com), the main website used by thousands of developers across the
globe.
The rest of this tutorial will describe how to use Github for use in your courses and to
manage and share your code among your peers for group assignments and projects.
1.1 Registering
If you want to use Git on your own personal machine, then you may need to install a
Git client. There are many options out there and you are encouraged to explore them,
however the following suggestions are all free and open source.
• Git has released its own graphical user interface clients which are available for free
for both Windows and Mac:
– Windows: https://windows.github.com/
– Mac: https://mac.github.com
See section 2 for instructions on using the client.
• If you will be using the Eclipse IDE (http://www.eclipse.org/downloads/) for
development, the most recent versions already come with a Git client. Eclipse will
work on any system. See Section 4 for using Git with Eclipse.
• If you use Windows and prefer to use a command line interface, you can download
and install TortoiseGit (https://code.google.com/p/tortoisegit/) a Windows
Shell Interface to Git. See Section 3 for using Git via the command line interface.
• If you use Mac and want the command line version of Git, you can download and
4
install here: http://www.git-scm.com/download/mac. Alternatively, you can in-
stall Git using a tool like MacPorts:
http://iamphioxus.org/2013/04/20/installing-git-via-macports-on-mac-osx/.
See Section 3 for using Git via the command line interface.
You will eventually want to publish (push) your project code to Github. To do this
you’ll rst need to create a repository on Github’s site:
1. Login to Github (https://github.com/) and click on the repositories tab.
2. Create a new repository (see Figure 2) with the name that will match your project
folder (the names do not have to match, but it keeps things organized). Provide a
short description and choose whether or not to make it public or private depending
on whether or not you are allowed to share your code with your peers.
You may choose to include a README le and/or establish a license (which
creates a LICENSE le). However, for this tutorial we will assume that you start
with an empty repo on Github. If you choose to create these les some extra steps
may be necessary.
5
2.1 Cloning an Existing Repository
To clone an existing repository hosted on GitHub, point your browser to its URL. On its
page there will be several options to clone, fork or download the repository (see Figure
3).
If you click the Clone in Desktop option, you’ll be prompted to allow the GitHub
client to open and clone the repository to your local le system (you will be prompted
to indicate where unless you’ve setup a permanent clone path/directory). You will be
able to make changes to your local copy but you will not be able to push changes to the
original project unless you are a collaborator with write permission. However, you can
create a new repository in your GitHub account and push the project back to your own
repository.
A fork essentially does this in reverse. If you choose this option, a new repository will
be created in your account and the project will be copied to this new repository. Then,
in your Git client, you can clone it as a local copy to work on by clicking the Add a
6
repository button in the Git client as depicted in Figure 4.
To share/publish a project to GitHub, you can start with an existing project or create
a repository and then start working on your project.
1. Open your Git hub client and click the Add a repository button as in Figure 4.
2. Select the Create tab and select the directory of the project you wish to create
a repository with as in Figure 5.
3. Upon success, the Git client should appear as in Figure 6; you can now make
an initial commit by lling in the commit message and description and clicking
Commit to master
7
Figure 6: Committing in the GitHub Client
4. You can now publish your repository to GitHub by clicking the Publish icon
in the top right of the Git client
5. This opens a new dialog where you can specify the name and description of the
project as it will appear on GitHub.
To nish up, click the Push Repository button and observe your new project on
GitHub
8
2.3 Making, Committing & Pushing Changes
You can make changes to your local project and the changes will automatically be
detected in the Git client. As in the previous step-by-step process, you can select a
subset of changes to commit. Once committed, you can push the changes by clicking
the Sync icon at the top right:
The rst thing you may want to do is to clone an existing project that has already
been published on Github. You may do this if your instructor has provided some code
for assignments or labs.
To start, you can verify that git has been properly installed on your machine by executing
the following:
git --version
which may output something like:
git version 1.9.5 (Apple Git-50.3)
though your specic version may dier. However, if this command does not work, you
will need to troubleshoot your installation before continuing.
1. Move to the directory where you want the project les to be placed. Usually this
is your workspace folder.
2. Execute the following command:
git clone https://github.com/project/url
9
where the URL is replaced with the URL of the project that you want to clone. For
example, if you wanted to clone Lab 01 for CSCE 155E/H, which has the url https:
//github.com/cbourke/CSCE155-C-Lab01, you would execute the command:
git clone https://github.com/cbourke/CSCE155-C-Lab01
3. If successful, you should see a message like the following:
Cloning into ’CSCE155-C-Lab01’...
remote: Counting objects: 9, done.
remote: Compressing objects: 100% (7/7), done.
remote: Total 9 (delta 2), reused 9 (delta 2), pack-reused 0
Unpacking objects: 100% (9/9), done.
A new directory/le structure should now exist in your directory and you can start
working with/editing the les.
If the owner of the repository that you just cloned ever makes changes, you can pull
those changes from the repository by using git pull to pull all changes.
1. Before continuing you will need to create a repository on Github. To do this, refer
to the steps in Section 1.3.
2. Setup your local repository from the command line by going to your project direc-
tory and executing the following commands (approximate expected outputs have
been included here:
10
[master (root-commit) 7a3fb99] Initial Commit
2 files changed, 24 insertions(+)
create mode 100644 README.md
create mode 100755 hello.c
• Associate your repo with the repo on GitHub using the following command:
git remote add origin https://github.com/login/PROJECT.git
where the URL is replaced with the URL for your project.
• Push your commit to the remote repository using the following command:
git push -u origin master
Output should resemble something like:
Counting objects: 4, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 577 bytes | 0 bytes/s, done.
Total 4 (delta 0), reused 0 (delta 0)
To https://github.com/login/PROJECT.git
* [new branch] master -> master
Branch master set up to track remote branch master from origin.
3. Refresh your browser’s Github page to verify the changes were pushed remotely
Now that your code is committed to Github’s servers, you’ll eventually want to make
changes to current les and/or add/remove les and commit these changes. Once you
have made your changes, you can essentially repeat part of the process above:
git add --all
git commit -m "Update Message"
git push -u origin master
Note:
• The "Update Message" should be more descriptive: it is used to document the
changes you’ve made for this commit. It is best practice to be as descriptive as
possible as to your changes.
• The git add --all command adds all les in the current directory as well as
all of its subdirectories to the commit index. If you want to be more precise and
intentional, you can add individual les using git add foo.txt , etc.
11
4 Using Git via the Eclipse
Eclipse is an industry-standard Integrated Development Environment (IDE) that inte-
grates code editors (with markup) and build tools to streamline the development process.
There are many plugins and utilities that can be used with Eclipse to interact with git.
However, the latest version of Eclipse (Luna as of this writing) supports git natively.
The process below describes how to use this functionality.
Advantage: using a single IDE/interface keeps things simple
Disadvantage: interface can be a bit clunky; it is more dicult to see dierences
1. First we need a Git perspective (a context in the Eclipse User Interface that will
allow us to work with Git). To open the Git perspective, click on the Open
Perspective tab in the upper right:
3. Copy/past or type into the URI eld, the URL of the project that you want
to clone. For example, if you wanted to clone Lab 01 for CSCE 155E/H, you
would use the URL https://github.com/cbourke/CSCE155-Java-Lab01 Then
click Next
12
4. Once Eclipse has grabbed the project, the master branch should be selected
(checkbox); click Next again.
5. Select the directory where you want your project to be saved. Caution: the default
option may not correspond to your default workspace. You may want to change
it to your workspace, but the choice is yours. Also mark the Import all existing
projects after clone nishes checkbox option or you will need to manually import
the cloned project into Eclipse.
13
6. Switch back to your Java or JavaEE perspective and you can see your cloned
project.
Note: this process assumes that the project you are cloning originated from an Eclipse
project. Eclipse expects that les be organized in a particular way and that conguration
les are present that describe how the project is setup. If the project was not an Eclipse
project, you’ll need to clone/setup the project in Eclipse manually.
If the owner of the repository that you just cloned ever makes changes, you can pull
those changes from the repository by right-clicking the repo in the Git Perspective and
selecting Pull.
Create and develop your own project in Eclipse and get it to the point where you want
to make an initial commit and push to Github. Then do the following:
1. Before continuing you will need to create a repository on Github. To do this, refer
to the steps in Section 1.3.
2. Open the Git Perspective in Eclipse.
3. Click the Create a new repository and add it to this view icon:
4. Select the project folder for the Eclipse project you want to add as a git repo
14
5. Expand the directory structures and select the le(s) you wish to add to the index
(that is, the les you want to stage for your commit), right click and add to
index.
Note: adding a folder (or the entire working directory) to git’s index adds all les
and subfolders within that folder. You can instead, highlight individual les if you
want to be more precise or intentional with each commit.
6. Right click the repo and select Commit..
15
7. Enter a commit message; Initial Commit is good for the rst commit, but each
commit message should be descriptive and document the changes that have been
made. Select the checkboxes of all the les you wish to commit. Click Commit
Note: you can see the dierences in each le if you double click the le.
8. Right click the repo again and select Remote → Push
9. Enter the URL of the repo you created on http://github.com. Then enter your
Github user name and password.
16
Note: this will only work for your repositories or repos on which you are a collab-
orator and have been granted write access.
10. Select master from the Source ref menu and click Add Spec. The branch
should now appear in the Specications for push menu. You can now click
Finish.
11. If successful, a new dialog conrming the push should appear and your les should
be updated on Github.
17
4.3 Making, Committing & Pushing Changes
Now that your code is committed to Github’s servers, you’ll eventually want to make
changes to current les and/or add/remove les and commit these changes. Once you
have made your changes, you can essentially repeat part of the process above; however,
steps 1–4 will not be necessary.
Note that you don’t need to push every commit to Github. You can make as many
local commits as you want. The entire history and all the dis (dierences) are tracked
between each commit.
6 Resources
This tutorial is only an introduction to get you started. Git is a complex tool that takes
a while to master. There are many other issues (branching, resolving conicts, merging,
etc.) that will you eventually encounter. Below are some additional resources that may
help you.
18
https://github.com/blog/2046-github-desktop-is-now-available
• GitHub’s Tutorial/Challenge:
https://try.github.io/levels/1/challenges/1
• Workow tutorial using git:
https://www.atlassian.com/git/tutorials/comparing-workflows/centralized-workflow
• Git from the inside out:
http://maryrosecook.com/blog/post/git-from-the-inside-out
• Github Video Tutorial: https://www.youtube.com/watch?v=0fKg7e37bQE
• Lifehacker tutorial on using git:
http://lifehacker.com/5983680/how-the-heck-do-i-use-github
• Eclipse Mars now comes with Git Flow! http://eclipsesource.com/blogs/
2015/06/22/git-flow-top-eclipse-mars-feature-3/
• 19 Tips for Everyday Git Use http://www.alexkras.com/19-git-tips-for-everyday-use/
There are many more alternatives each with their own features and business model.
UNL hosts its own GitLab instance. GitLab is software similar to GitHub but is free and
open source, oering unlimited private repositories and unlimited users. UNL’s instance
can be found at https://git.unl.edu and is free for all students, faculty, and sta.
You can login with your My.UNL login credentials (the same that you use for Black-
board). The look and feel will be very similar to GitHub. To get started, GitLab has
an introductory video available to help you get started: https://about.gitlab.com/
19
2014/02/26/getting-started-with-gitlab/. The full documentation can be found
here: http://doc.gitlab.com/ce/.
20