Contributing to Open Source on GitHub
11–20 of 33 posts
Re: Contributing to Open Source on GitHub
#12What should I do if the open source project I want to contribute to isn't on GitHub?
Oh, wait, that's exactly what you shouldn't do. :)
Re: Contributing to Open Source on GitHub
#13great. next up: a well-written & concise guide on writing proper commit messages. could be based on http://tbaggery.com/2008/04/19/a-note-about-git-commit-messa... and http://robots.thoughtbot.com/5-useful-tips-for-a-better-comm...
A sample script can be found here:
http://addamhardy.com/blog/2013/06/05/good-commit-messages-a...
Re: Contributing to Open Source on GitHub
#14This can be useful when people are commenting on your pull request and you are not sure whether they have a final decision on the merge.
Re: Contributing to Open Source on GitHub
#15Tip: if you are not sure who the committers to a project are: https://api.github.com/repos/:user/:repo/collaborators . For example: https://api.github.com/repos/bitcoin/bitcoin/collaborators This can be useful when people are commenting on your pull request and you are not sure whether they have a final decision on the merge.
In this PR for example, wearhere is labelled as a collaborator in the corner of his comment. https://github.com/inkling/Subliminal/pull/170
Re: Contributing to Open Source on GitHub
#16I think it's interesting how GitHub is trying to push open source contribution. However, we shouldn't rely too much on GitHub for (open source) collaboration. Git is decentral after all. Open source should remain too.
Properly used, GitHub doesn't stop git from being decentralized.
Re: Contributing to Open Source on GitHub
#17Earlier quoted context omitted.
Properly used, GitHub doesn't stop git from being decentralized.
The whole "Wiki" feature comes to mind. Can I leave and take my project's wiki with me?
> git clone git@github.com:wicketstuff/core.wiki.git
More of a problem would be your issues.
Re: Contributing to Open Source on GitHub
#18Tip: if you are not sure who the committers to a project are: https://api.github.com/repos/:user/:repo/collaborators . For example: https://api.github.com/repos/bitcoin/bitcoin/collaborators This can be useful when people are commenting on your pull request and you are not sure whether they have a final decision on the merge.
I think that Github now labels them as "collaborators" in the UI. In this PR for example, wearhere is labelled as a collaborator in the corner of his comment. https://github.com/inkling/Subliminal/pull/170
Re: Contributing to Open Source on GitHub
#19Earlier quoted context omitted.
The whole "Wiki" feature comes to mind. Can I leave and take my project's wiki with me?
Sure, just add .wiki in before .git in the git URL: > git clone git@github.com:wicketstuff/core.wiki.git More of a problem would be your issues.
Re: Contributing to Open Source on GitHub
#20Tip: if you are not sure who the committers to a project are: https://api.github.com/repos/:user/:repo/collaborators . For example: https://api.github.com/repos/bitcoin/bitcoin/collaborators This can be useful when people are commenting on your pull request and you are not sure whether they have a final decision on the merge.