Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When no license is explicitly attached to a piece of code hosted at github (neither as a separate file, nor in the headers, nor in the readme), what is the default license inherited by the code ?

share|improve this question

closed as off topic by random, Romain Francois, Bohemian, Mark, JLRishe Jan 21 at 10:39

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 53 down vote accepted

There's no license in this case and you cannot claim any intellectual property of the code. It would be the same if you uploaded the content on your own site without providing any license. According to the terms:

We claim no intellectual property rights over the material you provide to the Service. Your profile and materials uploaded remain yours. However, by setting your pages to be viewed publicly, you agree to allow others to view your Content. By setting your repositories to be viewed publicly, you agree to allow others to view and fork your repositories.

share|improve this answer
Thanks a lot for this (accepted ;-) ) answer. It's straight to the point. – nulltoken Oct 24 '10 at 10:53

Brian Doll, GitHub's VP of Marketing, explains it:

Code without an explicit license is protected by copyright and is by default All Rights Reserved. The person or people who wrote the code are protected as such. Any time you're using software you didn't write, licensing should be considered and abided.

share|improve this answer
Could you add a link to a source for this please? – Thilo Dec 2 '12 at 14:25
3  

Simon Phipps says on his blog:

"You don't have to include a copyright statement for your creative work to be under copyright. In any country that's a signatory to the Berne Convention, copyright -- or stronger -- is the default as soon as something is created. If you completely ignore the subject, all your work is copyrighted to you (or to your employer in many cases), and anyone who copies it to use or improve it is in breach of your copyright."

(Source: http://www.infoworld.com/d/open-source-software/github-needs-take-open-source-seriously-208046)

see also Berne Convention: http://en.wikipedia.org/wiki/Berne_Convention_for_the_Protection_of_Literary_and_Artistic_Works

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.