Posts tagged with git
A few reasons braid is better than 40 lines of Rake.
Dennis - September 27th, 2008
Published in Software
I’ve been doing a lot of looking at the git subtree merge strategy for tracking remote projects. Ideally, our remote projects would be tracked with submodules. The issue is, we are developing our own libraries for use in our own internal projects. We commonly do major development on the libraries and the [...]
2 Comments
Sharing git branches
Dennis - September 15th, 2008
Published in Programming
I’ve been learning git lately. Here are a few tips for sharing branches I’ve collected during the past few weeks.
Create a branch
In git, branches are stored on your local machine. Even the commonly named “master”, is just a branch on your local machine. Master is simply set up to track a branch [...]