I want v0.1.27 of nodejs code base.
This is what I did.
git clone git://github.com/ry/node.git
cd node
git checkout -b v0.1.27
However when I look at v0.1.27 code base changelog there I see changelog for 0.1.32 also. It seems I did not checkout v0.1.27.
How do I checkout a branch from a tag?
What you did is create a local branch, called v0.1.27, starting from HEAD. If you only want to have a look at the v0.1.27 tag, just remove the
-boption:If you plan to make changes, you might want to create a tracking branch: