April 2008
5 posts
Memcached is one of those things you wish you’d though of before. So...
– comment on reddit
Hell is other people’s code.
– Mike’s blog
Pushing and Pulling Branches on Github
Original article
What worked for me (tamanegi/open-uri branch):
# create local branch
$ git checkout -b open-uri
# pushing branch
$ git push origin open-uri
# pulling remote branch
# (one time only - trac remote branch with local one)
$ git branch -d open-uri
$ git branch -f open-uri origin/open-uri
# (regular updates)
$ git checkout open-uri
$ git pull
# merge and delete
$ git checkout...
LOL. This is not the first time I wished FF had a LOL button :)
– comment on FriendFeed