How i get linus torvalds contribute in my github projects

Fajar Firdaus, opensource
Back

This my projects with linus contribute with Project-365%

The Concept

How this is possible ?, every github commit system is connected to the users email instead of the authentication data. So if this happen you can modify the commit with the another github users email so that gonna appears in you repository contribution, and that's what i did in linus torvalds contribution on my github

Tutorial

First things first, you have to search the linus github email. in this case i used github API to search the linus email

https://api.github.com/users/CHANGE_WITH_USERNAME/events/public

if you got the email, then make any changes into you project and commit with this command

git -c user.name="Linus Torvalds" -c user.email="torvalds@linux-foundation.org" commit -m "Hello World"

and the results is

The Conclusion

I think GitHub should fix this bug to prevent attacks on profiles. If the target user starred your repository, you can draw something in his Activity Overview as example.

© Fajar Firdaus | Powered By Next.js.