GitHub brings its own Mac client

Posted on Mon 04 July 2011 in Mac

GitHub became one of the most popular places for free and commercial software development the last few months. The market around the great DVCS Git initiated by Linux Torvalds became more and more popular. It is fast and fixes many problems for distributed code development by design.

A colleague of my gave me a hint that there is a mac client for GitHub which kicks asses. So let's review this peace of software.

There is a nice tool called Tower which was my favorite to become my git client beside the console up to now. I used git as user the most time and up to now I hadn't the need to buy Tower as long as there is no project using Git I am involved in.

But let's have a closer look to the offline Mac client now. First download the App and install it into you application directory and run it.

Welcome Page GitHub for MacThis is the first screen you will see when you run the application the first time.

GitHub for Mac add your user data

Enter your git account login data or sign up for a free github account with this screen and continue.

image2

image3

If you plan to share an existing local git repository GitHub for Mac lists you all local git repositories it found in your home directory.

image4

I didn't share a local respository but created a new one for an existing example project. image5

If you have a paid account you are able to host private repositories as well. I only have a free account for open source and public code projects. I checked the 'Push to GitHub.com' checkbox to share this project.

image6

Now the local repository was created in my home directory ~/github/Victoria/

image7

I copied the project files to the directory and the github client recognized the changes.

image8

Add a commit comment which explains the changes in my case it was the initial import.

image9

Click 'Publish Branch' in the right upper corner to sync the local changes to GitHub.com

image10

Git is designed to work very well with branches and merging. Here I created a branch for experimental changes to my code and published it.

image11image12

As you can see in the right upper corner while the client is publishing the changes is shows a process.

image13

You can review your changes in the changes tab. Now we switch to GitHub where a friend of my did some review and made a change on my commited source code. This is a nice feature which GitHub provides. He sent a so called 'Pull Request' to me with his change. This means he want me to create his change into my branch. A very useful functionality.

image14image15

Lets merge his 'Pull Request' into my experimental branch.

image16

Back in the GitHub client for Mac i am now able to sync this change down to my local repository clone.

image17image18

I hope this gives you a first overview what functionality this new GitHub client for Mac already has. I think in future releases this tool will become more powerful and makes the interaction with GitHub more easy.