Thank you John this is much more better than searching within Commits on Github web. the only problem is the huge amount of commits and the fact, that from the commit description is not possible to find out if this is related commit to the described issue or not. There is no such description like "Fix for: MSCHAP authentication problem" - most of commit descriptions are very specific to issue what they wanted to fix, but not from global point of view (to what the original problem are they fixing - which I completely understand). Also maybe the fix is related to other component than MSCHAP which also fixes my problem. I wanted to say that some keyword/hint will be helpful to find out for which I am looking for (maybe the filenames on where I should focus on in looking for right commit). Maybe someone else also had same problem and looked for same patch and found it... thank you again michal 2014-01-30 22:57 odosielateľ napísal:
On 01/30/2014 04:23 PM, Michal Bruncko wrote:
Hello Alan,
many thanks for response. Please did you remember related commit which fixes this issue? Or at least the files where the change was applied. Probably it will be better to backport this fix into 2.1.12.
All the information you need is already available to you. You don't need to bother anybody else to acquire it.
Clone the freeradius git repo,
% git clone https://github.com/FreeRADIUS/freeradius-server.git
list the branches
% git branch -r origin/HEAD -> origin/master origin/master origin/v1.1.x origin/v2.1.x-apple origin/v2.x.x origin/v3.0.x
check out the v2.x.x branch
% git checkout v2.x.x
puruse the log looking for the desired commit
% git log
After you've found the commit use it's sha-1 commit id to show the patch
% git show xxxxx
done
See, wasn't that easy?