Open Source Lizenzgenerator
Generiere den offiziellen MIT-, Apache-2.0-, BSD-3-Clause-, GPL-3.0- oder Unlicense-Text mit deinem Namen und Jahr.
Kurze Antwort: Open Source Lizenzgenerator: Erstellen Sie den offiziellen Text für MIT, Apache-2.0, BSD-3-Clause, GPL-3.0 oder Unlicense mit Ihrem Namen und Jahr. Läuft vollständig in Ihrem Browser, kostenlos und ohne Anmeldung.
Zuletzt aktualisiert
Gut zu wissen
Choosing a license is a legal decision, not a formality. The permissive family (MIT, BSD-3-Clause, Apache-2.0) lets anyone reuse your code in closed-source products, which maximizes adoption. Apache-2.0 adds an explicit patent grant and a NOTICE mechanism, making it the safer choice for anything with patent exposure or corporate contributors. GPL-3.0 is copyleft: derivative works must also be GPL, which protects the freedom of the code but deters some commercial use. The Unlicense effectively places the work in the public domain.
The generated text is the canonical OSI/SPDX wording with only the copyright line filled in — that verbatim wording is what tools like GitHub's license detector and SPDX scanners match against, so resist the temptation to reword it. If you edit the body, automated detection may report your project as "Other" and downstream compliance tools may flag it.
Put the result in a file named exactly LICENSE (or LICENSE.md) at the repository root so GitHub shows the license badge and populates the sidebar automatically. Some licenses expect a second step: Apache-2.0 wants a per-file header referencing the license, and GPL projects conventionally add a short notice to each source file. The year should be the year of first publication, optionally extended to a range as you keep releasing.
Once your license is set, round out the repo with a README and a .gitignore so contributors know how to build and what to leave uncommitted.
Häufig gestellte Fragen
- Ist der Lizenzgenerator kostenlos?
- Ja — kostenlos, keine Anmeldung.
- Sind das die offiziellen Lizenztexte?
- Ja — die Texte der MIT-, Apache 2.0-, BSD-3-, GPL-3- und Unlicense-Lizenzen stammen aus den offiziellen OSI / SPDX-Quellen.
- Welche Lizenz sollte ich wählen?
- MIT und Apache 2.0 sind die permissivsten und am weitesten verbreiteten. GPL-3 ist Copyleft. Unlicense ist im Wesentlichen gemeinfrei. Wähle basierend darauf, wie du möchtest, dass Nutzer dein Werk weiterverteilen können.
- Werden meine Details hochgeladen?
- Nein — die Erstellung läuft vollständig in deinem Browser.
- Wo sollte ich die LICENSE-Datei ablegen?
- Im Root deines Repos. GitHub erkennt dies automatisch und zeigt das Lizenzabzeichen auf deiner Repositium-Seite an.