I am looking through the parsec github repository (currently at version 3.1.16.1) on the master branch. As of the time of writing this, the latest commit on master has commit id 1f542120d9adc5e22f8791a6d595210e93c6c389.
If I run git branch -a (to see local and remote branches), I see that there is a branch named "remotes/origin/issue150". Here is the output of the command.
* master
remotes/origin/HEAD -> origin/master
remotes/origin/issue150
remotes/origin/master
remotes/origin/wip/ghc86
remotes/origin/wip/travis
I checked out this branch (commit id 76227d9006154cedd4861b9ff552aa1fbc2d27c2 currently). I saw this message on github about the branch issue150: "This branch is 1 commit ahead, 7 commits behind master." I ran git diff HEAD~1 to see what this branch changed relative to the commit in master history that it branched off of.
Amongst other things, the issue150 branch adds a test module Features.Feature150.
My question is not about the code itself. Rather, I am interested in finding where this feature was assigned the number 150. Is there a forum for features that I am not aware of like the "Issues" page for tab for github repositories? If so, does a similar forum exist for all github repositories?