Skip to content

Monthly Archives: April 2009

Tracking Remote Git Branches

Remote then Local
It is easy to setup a local branch (we’ll call it zzz here) to track a pre-existing remote branch:

$ git –track branch zzz origin/zzz

Alternately, if you use the branch.autosetupmerge setting in your git config to enable automatic branch tracking [1], the command is even shorter:

$ git branch zzz origin/zzz

Local then Remote (reverse)
This much [...]

Ruby CouchDB Library Comparison

As I looked at some of the Ruby libraries for CouchDB, it was clear that they have very different approaches. In the hopes of keeping them straight I began making a table. I am sharing it for your right-angled pleasure. Warning, it is in beta form. If you post comments, I [...]