Tuesday 10 September 2013

Example of using GitHub Pull Requests to merge changes made on Branches

After the fixes explained in the Git Flow - Moving patches from one Commit into another Commit  post and the reset of the TeamMentor 3.4 branch, Michael reapplied his other changes/fixes to the correct 3.4 commit, and I’m now in the process merging his Pull Requests into the 3.4_Release branch (and eventually into the master branch).

This post walks through my current workflow.

At the moment there are a number of Pull Requests to process:

image

... which were all created using Git Branches:

image

In the image above, the top lines show the commits/branches that have already been committed, and the bottom ones the branches that still need to be committed (currently on the ‘open’ Pull Requests)


Git Pull Request workflow

1) open the Pull Request page:

image

2) click on the link to the issue that is being fixed:

image

3) read the issue (and its history)

image

4) back in GitHub’s Pull Request, click on the Files Changed link to see the proposed code changes:

image

5) if I’m happy with the request, on the ‘Discussion’ tab, I click on the Merge pull request button

image

... followed by Confirm merge

image

6) optional: if this was under a repo that I owned, I would also delete the branch, in this case, Michael will have to do it on his repo/fork)

image

7) optional: confirm on GitHub’s Network Graph that the merge happened ok (i.e. the commit is now on the 3.4_Release branch and the Issue_462 branch no longer is shown on Michael’s fork)

image

8) optional: check that the respective issue has been correctly tagged/linked with this pull request

image

... do this for the other Pull Requests....

Here is how the Network Graph looks like after all merges have occurred:

image

At the moment there are only two branches that need to be merged:

#1 https://github.com/TeamMentor/Dev/pull/85 : currently conflicting (i.e the merge cannot happen automatically):

image

#2 https://github.com/TeamMentor/Dev/pull/87 – no idea what issue this is fixing (the link to the GitHub issue is missing)

image

Hopefully this shows the power of Git and GitHub’s commit/review workflow where:
  • each bug has a separate Issue, Branch and Pull Request
  • code review of proposed changes is really easy to do
  • multiple fixes can be done in parallel with very view conflicts
  • conflicts (when exist) are easy to indentify and deal with
  • GitHub’s visualizations make a massive difference in making this workflow really smooth
  • everything done by GitGub is based on git commands, which means that all actions could had been done locally, on git clones of TeamMentor/Dev and michaelhidalgo/Dev 
In fact, speaking of a manual step, now that we have the 3.4_Release with (just about) the final set of commits, I’m going to merge the 3.4_Release branch with the master branch (which will eventually become the release one)

To do that, I opened a (local) clone of TeamMentor/Dev:

image

... updated it (since it is out of date with the changes made directly on the GitHub’s version), using the command: $ git pull origin

image

… see all branches available, using the command:  $ git branch –a

image

… merged 3.4_Release branch into master branch, using the command $ git merge remotes/origin/3.4_Release

image

… pushed these changes into GitHub, using the command $ git push origin master:master

image

(note how no files were changed with this push, since all data was already in the 3.4_Release branch, this commit was just saying to GitHub's version: ‘please point the master branch into the 3.4_Release commit’)

After this commit, GitHub’s network graph will show that the master branch is now at the same commit as the 3.4_Release branch

image

But we are not done here, we will still need to update the compiled TeamMentor Dlls (and see if any UnitTests broke)

Let’s start by opening up the solution file in VisualStudio 2010:

image

... then clean and build the solution:

image

... which succeeded ok:

image

Next, change the version number to TM 3.4 – Dev 20

image

And start TM locally (just to see is all looks good):

image

Now, its time to run all UnitTests (in this case using ReSharper NUnit plugin):

image

... with two tests failing:

image

The first one was easy to fix (it was a case of updating the UnitTests to the changes made to the TM_User required fields):


image

The 2nd one was caused because the Google Analysis file has changed:

image

Here is the test that does this check:

image

... which basically checks that the http://www.google-analytics.com/ga.js we are using is still the same one served by google (this is a good security practice since TeamMentor's security is not dependent on Google's server).

The fix is to update that file:

image

… and rerun all tests (just to confirm it):

image

Committing changes made locally.

Keeping up with the model of only doing commits on branches, I quickly created a new branch, using the command: $ git checkout –b 3.4_Dll_Updates

image

(note how the small changes I made were also marked as ‘Modified (namely the version change, the UnitTests fixes and the recompiled dlls)

… added the files to be committed using the command: $ git add .

image

… created an commit using the command: $ git commit -m 'Changing version, adding compiled Dlls, fixing couple UnitTests'

image

.. pushed this branch to GitHub (not 100% necessary, but it will help with the graph), using the command $ git push origin 3.4_Dll_Updates:3.4_Dll_Updates

applied these changes to the 3.4_Release branch (locally and at GitHub), using the commands:
  • $ git push origin 3.4_Dll_Updates:3.4_Dll_Updates
  • $ git checkout 3.4_Release
  • $ git merge 3.4_Dll_Updates
  • $ git push origin 3.4_Release:3.4_Release
image

(note that this is an example of a ‘manual Pull Request’)

A quick look at GitHub’s network graph, shows the 3.4_Release branch at the same commit as 3.4_Dll_Updates branch (both one commit behind the master branch)

image

Finally we update master with these changes, using the commands:
  • $ git checkout master
  • $ git merge 3.4_Release
  • $ git push origin master:master
image

… and now all branches are at the same level:

image

Testing QA version created by TeamCity and deployed to Azure:

As shown in  past blog posts, we also have TeamCity configured to monitor TeamMentor commits and auto-publish new builds into Azure.

In this case after the latest commit into GitHub TeamMentor/Dev master repo, TeamCity picked up the changes and:
  • Built the code
  • Published to Azure
  • Run all unit-tests
At the moment there is one unit failing:

image

... which doesn't look problematic (it fells like a TeamCity specific case).

The Azure deployment went ok:

image

With a clean version of TM ready for testing:

image

…easily populated with a couple libraries:

image


Running TM locally from Zip File

A final test is to go to the main https://github.com/TeamMentor/Dev site and click on the Download Zip button:

image

…extract the zip files into a local folder, and click on the ‘start TeamMentor.bat’ file:

image

…which will start the .Net Cassini webserver on port 12120:

image

(note how the version number matches the commit made earlier)

At this stage:
  • TM is just about ready for a final round of QA
  • TM 3.4 RC1 will be created as soon as:
    • Michael fixes the couple pending issues
    • All UI UnitTests pass
    • All backend UnitTests pass (shown above)