src-d / awesome-machine-learning-on-source-code

Cool links & research papers related to Machine Learning applied to source code (MLonCode)
Creative Commons Attribution Share Alike 4.0 International
6.24k stars 840 forks source link

3 new code summarization papers #105

Closed bdqnghi closed 6 years ago

bdqnghi commented 6 years ago

Not sure why it keeps prompting the error The sign-off is missing, I appended the sign-off at the end of my commits already

m09 commented 6 years ago

Hi @bdqnghi! I think it's because it looks for it in a separate line. Thanks for sharing those papers!

m09 commented 6 years ago

BTW you can use git commit --amend --signoff so that git appends automatically a signoff to your previous commit (based on your configured git.user.name and git.user.email). Then you can push this edited commit with the -f option of push (git push -f)

bdqnghi commented 6 years ago

I see, fixed it :+1:

m09 commented 6 years ago

Almost there! Now your signoff is present twice. If you want to edit it you can use once again git commit --amend to edit your commit message and then push (again with -f)

bdqnghi commented 6 years ago

Fixed it : )

m09 commented 6 years ago

Thanks for the PR, it looks good to merge now :)