In plain language (hopefully with a simple example), what do the ahead/behind metrics on a Github repo\'s branch mean?
And what are the implications for that branch
The metrics like those you can see for this project describe, compare to a branch from the repo (like master):
The technical detail is illustrated by the script "determining which repos are ahead/behind origin":
It is about checking:
git rev-list "$localref..$anotherref"git rev-list "$anotherref..$localref"