On Wed, Feb 11, 2015 at 1:45 AM, Mirar @ Pike developers forum <10...@lyskom.lysator.liu.se> wrote: > What's the git command to get whatever git is calling the head > revision of Pike? (I presume it's there.)
Not sure what you mean. You can get the exact commit hash: $ git rev-parse HEAD dffaa5d5405548d2f35355bd749e10bf8a2fc026 Or the symbolic name, which identifies the branch: $ git rev-parse --symbolic-full-name HEAD refs/heads/8.1 The meaning of HEAD will depend on what's checked out, if you're looking at a local (non-bare) clone of the repo. ChrisA