Archive for the ‘git’ Category
Friday, April 4th, 2008
I'm excited to say that Viget's open source participation is being bumped up a notch; last night, I created a new GitHub account for the company, where we'll be hosting all our open source projects.
The general strategy is to use the vigetlabs repositories as the "stable" version for each of ...
Posted in git, open source, viget | No Comments »
Friday, February 1st, 2008
Updated!
When preparing to merge a working branch back to master (so that you can push it up to your SVN repository), the following process may be helpful:
> git checkout -b working
[work work work]
> git commit -m "helpful message"
[work work work]
> git commit -m "another helpful message"
> git svn rebase (pull ...
Posted in git | 2 Comments »
Thursday, January 17th, 2008
I've been experimenting lately with git - a distributed version control system (DVCS) that's been gaining popularity over the last few months. Git's got a couple of fantastic features, but for me - coming from SVN - there were a few stumbling blocks. Despite the wealth of documentation and tutorials ...
Posted in git, ruby and rails | 1 Comment »