Contributing to Open Source projects
brad.livejournal.com
Contributing to Open Source projects
1–10 of 23 posts
Re: Contributing to Open Source projects
#2Re: Contributing to Open Source projects
#3On the other hand even if you find where to contribute to with open source you can't be as sure your patch will be taken.
(Although as mentioned on LWN: http://lwn.net/Articles/379109/ it seems Google have managed to fork libjingle, so even Google can't get this right.)
Re: Contributing to Open Source projects
#4Github solved this problem. Everyone knows how to contribute to a Github project. Click the fork button, commit your patch, send pull request.
Re: Contributing to Open Source projects
#5Re: Contributing to Open Source projects
#6Github solved this problem. Everyone knows how to contribute to a Github project. Click the fork button, commit your patch, send pull request.
Git is hardly the end all be all.
Re: Contributing to Open Source projects
#7http://gilesbowkett.blogspot.com/2010/03/programmers-what-to...
It didn't even take a week after I watched it for me to start implementing his suggestions.
Re: Contributing to Open Source projects
#8Github solved this problem. Everyone knows how to contribute to a Github project. Click the fork button, commit your patch, send pull request.
I wonder if you're being sarcastic? Had you said that to me two weeks ago I wouldn't know what the hell "fork", "commit", and "pull" had to do with contributing. Git is hardly the end all be all .
Re: Contributing to Open Source projects
#9Github solved this problem. Everyone knows how to contribute to a Github project. Click the fork button, commit your patch, send pull request.
I wonder if you're being sarcastic? Had you said that to me two weeks ago I wouldn't know what the hell "fork", "commit", and "pull" had to do with contributing. Git is hardly the end all be all .
Most people are probably happy to get patch submissions, but there's some work involved in accepting them.
Generally, project owners want to see a test accompany any change to demonstrate that a bug was fixed or that new behavior does what's claimed. There may also be coding standards to follow, and (ideally) some documentation for new code.
If you omit these things when you submit a patch or issue a a pull request you may still think you're doing the project owner a favor, on the premise that something is better than nothing, but reviewing your submissions and checking that it is correct, and possibly cleaning up your code and adding tests, may end up being more work than it's worth.
Git and github have removed some obstacles to contributing, but there are still assorted details one has to look after.
Re: Contributing to Open Source projects
#10Github solved this problem. Everyone knows how to contribute to a Github project. Click the fork button, commit your patch, send pull request.
http://www.reddit.com/r/programming/comments/7svak/look_at_5...
It hasn't solved the problem for everyone, though.