LATEST NEWS

Learning git/github with WoWPro Addon – Part 1

img
Dec
16

This is the Part 1 of the guide on how to use git / github, covering Introduction and Installations.

Table of Contents

  1. Introduction
  2. What’s git?
  3. What’s github?
  4. Tutorial: Getting started

This is the Part 1 of the guide on how to use git / github, covering Introduction and Installations.

Table of Contents

  1. Introduction
  2. What’s git?
  3. What’s github?
  4. Tutorial: Getting started



1. Introduction


WoWPro addons are developed using a control version system called git and hosted in github, a git public hosting site (I’ll explain what that means later on). Although you are definitely not required to learn git in order to contribute with WoWPro addons, it certainly wouldn’t hurt. 😉

  • Who this guide is for exactly?

It is mainly designed to be useful to WoWPro addon developers, allowing them an easier and more resourceful access to the project. For people out there with some programming skills, who want to contribute with the development of the addon, then this guide is definitely for you! Along with the tutorials themselves, I’ll also show some “etiquette” suggestions when using git / github.

For guide writers/coders/editors, this guide can certainly be also useful. However, just be aware that we are trying to centralize guide edits, posts and bugs on their respective community pages here on WoWPro.com. So, we ask you to not push your changes directly into the original github’s project. But even with this restriction, using git can help tremendously in your task! I’ll explain all that in the next part of the guide, as well as some “etiquette” suggestions.

For people who are reading this guide right now and have no idea what this is all about (like general WoWPro addon users), but are curious and willing to learn new things, then I invite you to also read the guide. But I won’t mind if you go somewhere else. 🙂

Also, this guide assumes Windows users, but if you have another operating system, you should be able to follow it just fine, as the git user interfaces should be similar across OSs.

  • What this guide is not?

There is a plethora of guides, tutorials, articles on how git will save the world, articles on how git sucks, etc on the Internet and it is not my intention to compete with them (in fact, I’ll provide several references at a later time). Partly because it wouldn’t be useful to the community here and partly because I’m not an expert on this subject! So, this guide is really just an overview of git and github, with some tutorials focused on WoWPro addon.



2. What’s git?


Let’s say you have a project composed of text files, that you continuously perform changes. Since the changes can be somewhat sensitive, you then decide to keep track of different versions of the same files, over time. The classical way is opening up the relevant, original file in a text editor, make the changes you want, and then use the “Save as…” option. Then, the name of the new file can be the original’s, plus some other identification, like a version number or the date it was created/modified.

But as the number of versions increases, it gets difficult to know what each of them actually means with just different name files. So, you could also improve this pedantic version control by writing, at the beginning of the text file, a change log, enumerating all the changes you performed in that particular version.

It works, but as you can see (for a number of reasons), this cumbersome system does not scale well with the number of files/lines, number of versions, etc. So people developed other, smart control version systems, of which git is one of them. These can perform easily all the processes described above and more! You’ll see some of the functionalities later on.

Before we get to the tutorials, there’s something else I should mention: what happens if you have more than one person working on the same project? This leads us to github…



3. What’s github?


You can do all the control version processes described above with git, in your local computer. You don’t really need to be like me, who does not remember even what he had for dinner last night, to appreciate easy access to changes / versions / comparisons in a personal project you’ve been working on, say, for months.

But a control version system really shines when more than one person is working on the same project, especially nowadays with all the open source projects and global collaboration. For that, a git project can be hosted in a server, which can then be accessed (and potentially modified), by people around the world through the internet.

Github is git hosting site, which provides interesting functionalities to project management and collaboration. You’ll learn some of them in the next tutorials.


Nomenclature:
Repository (repo, for short): a git project, its files and information stored by git, 
such as the different project versions. A repository can also refer to a 
full copy of a git project (more on that later).  If it's located in your local computer, 
then it's called “local repository”. If it's shared, in a server, it's called remote 
repository. Usually, you need a local repo in order to work with a remote one.

Now let’s get on the hands-on…



4. Tutorial: Getting started


Let’s start by downloading and installing git. There are several tools and interfaces that you can use to do git control version, from the blander, but more robust command lines to graphical interfaces. For this guide, we’ll use a git interface for Windows, called Git Extensions. For a complete list of interfaces, including the original one for unix/linux, check the following reference link: Git Interfaces list.

You can download the latest version of Git Extensions from here:

http://code.google.com/p/gitextensions/

Or more directly, for the version as of this writing, here:

Direct Download Link

guide1real.jpg
Run the downloaded file to begin the installation:

guide2real.jpg
Unless you have absolutely sure you have the required softwares, check to install both of them and continue in Next:

guide3real.jpg
For the next step, leave the installed features as they are, just click Next. But here, let’s use Putty:

guide4real.jpg
Then, just continue with the installation. At some point, it will ask you to install Git (which is actually the core’s program) and kdiff3, which you shouldn’t worry about it. For both, just use the default options as they are and keep clicking “Next” or “Continue”.

If the installation is successful, you should see a new icon on your Windows desktop (and/or somewhere in the Windows Programs menus), that looks like… hmm… a Tauren?. Open the program Git Extensions, click “Ok” if a checklist settings window is shown, and you should finally see something like this:

guide6real.jpg
For this guide, as you can see, we’ll use the graphical interface, but don’t be afraid to use the git command line if you want to. Git commands are few and easy to remember (yes, even to me), since they are all English words. If you want to try that later, you should see a program called git bash, which opens the git command line.

Ok, now let Git Extensions rest for now and let’s deal with github…

Go on github.com and click on the big, blue button. Don’t be scared about the plans, prices… for public projects such as the WoWPro addon, github is completely free, easy and quick to sign up and use.

guide7real.jpg
Now, choose the Create a Free Account option. Unless you already have a github account, just choose an username, e-mail, password and you’re good to go. Your github home looks a little empty right now… but we’ll fix that in the Part 2 of the guide!

  • img
    Jun 28, 2011 @ 19:15 pm

    Perhaps https://github.com/blPerhaps https://github.com/blog/878-announcing-github-for-mac is what you are looking for?

  • img
    kaic lima
    Jun 27, 2011 @ 18:21 pm

    imacwork on imac? 

  • img
    Dec 17, 2010 @ 4:40 am

    I think the images are a fineI think the images are a fine size as they are. Everything seems well-formatted and easy to read 🙂 I forget that you haven’t posted a guide here before! It looks great, though I wouldn’t have expected anything else from you 😉

  • img
    Dec 16, 2010 @ 23:36 pm

    This is actually my firstThis is actually my first guide here. Any suggestions on formatting? Maybe the images could be smaller?

  • img
    Dec 16, 2010 @ 23:19 pm

    Looking great Silvann, can’tLooking great Silvann, can’t wait to see Part 2! 🙂

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.

Categories

Archives