Archive

Posts Tagged ‘git’

Linking to your GitHub code

August 19th, 2010 shaun View Comments

It’s pretty easy to link directly to a line of code in your GitHub repo:

robotlegs/robotlegs-framework/blob/master/src/org/robotlegs/core/IContextProvider.as#L16

Don’t do that you naughty sausage! Your codebase will evolve (if all goes well), and line 16 will be replaced by a newer, shinier string of characters. Or, in this case, it’ll point to something that no longer exists.

This, on the other hand, is more likely to stick around to haunt its author (me):

robotlegs/robotlegs-framework/blob/v1.1.2/src/org/robotlegs/core/IContextProvider.as#L16

Select a tag before you link to your fancy code (“Switch Tags” under GitHub‘s “Source” menu).

Categories: Banter, Robotlegs Tags: , , ,

OS X Git Prompt

November 15th, 2009 shaun View Comments

I’m currently using a modified version of git-prompt that looks something like this:

Git-prompt
Read more…

Categories: Resources, Tutorials Tags: , , , ,

Getting Started with Git on Mac OS X

March 14th, 2009 shaun View Comments

Some Background

I’ve recently switched from using SVN to using Git as my source control management tool of choice. It took a little while to get to grips with, but it rocks!

Git is not an evolution of SVN. It is entirely different. Git is a distributed revision control system – everybody working on a project has their own full copy of the repository and its entire history. Read more…

Categories: Resources, Tutorials Tags: , , , , , ,