If I fork a project on Github that is licensed under MIT, how do I handle the attribution and copyright notice?

softwareengineering.stackexchange https://softwareengineering.stackexchange.com/questions/277688

If I plan to fork an MIT project and significantly modify and rename it, how do I handle the copyright notice above the MIT license on the main License file. Would I list the original author and my company, or just the original author? What are my legal options as far as attributing the original author? I intend to license our software under MIT as well and keep it open source.

有帮助吗?

解决方案

The MIT license doesn't specify attribution beyond maintaining the copyright notice.

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

Somewhere within the source for the project you are considering forking, there should be a LICENSE file or equivalent. If there isn't, then you ought to create one.

The license file provides two key aspects:

  1. Statement of copyright to the source.
  2. License terms for use of the software.

To cover the first aspect, within the license file, you should state something to this effect:

Copyright for portions of project Foo are held by [original author, year] as part of project Bar. All other copyright for project Foo are held by [your name, year].

And after that copyright statement, you should make sure the full text for the MIT license is listed, which covers the second aspect.

许可以下: CC-BY-SA归因
scroll top