How to add license to an existing GitHub project

GithubLicensing

Github Problem Overview


When I created a GitHub project I chose None.

How can I now add a GPL license to my already added project?

screenshot

Github Solutions


Solution 1 - Github

  1. In your repository, click 'Create new file'

step 0


  1. a) Type 'LICENSE', 'LICENSE.md' or 'LICENSE.txt' as the new file's file name. b) The 'Want to use a new template?' dialog will appear.

step 1


  1. Choose your preferred license.

step 2

The accepted answer is almost there, but confused me, because it said 'click the blue plus' - the interface may have changed - and the image is the same as the OP's.

Solution 2 - Github

  1. Go to your repository
  2. Add a new file by clicking the blue plus icon
  3. Type the file name as License.txt or License.md after which a license picker will show up. Then you can choose the type of license.

Solution 3 - Github

There is an easier way to get to the 'Add License' wizard:

  • Go to your repository's Insights tab
  • Click Community on the left side
  • On the right side, click Add on the line wich says License

add license to github repository

For some reason this is not even mentioned in the docs at github.

Solution 4 - Github

  1. Go to your repository
  2. Click on "Create new file" Button
  3. Type the file name as License.txt or License.md in the input box next to your repository name, a drop down button appears towards right side
  4. Choose the type of license of your choice
  5. Click "Commit new file" button at the bottom (Green button)

Solution 5 - Github

I just wanted to add another valid alternative using https://choosealicense.com made by Github and many more.

> ChooseALicense.com aims to provide accurate, non-judgmental, and understandable information about popular open source licenses in order to help people make informed decisions about the projects they start, maintain, contribute to, and use.

After you have picked your license there are two alternative ways to transfer your new license.

  1. Copy to clipboard: Click button Copy license text to clipboard and paste into your LICENSE file anywhere you want. How to add license into Github is answered by others.
  2. Github: Fill textfield Enter GitHub repository url and hit Enter (Bellow the button). You will be asked for permission to access your Github repository.

Note!

> Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders

Example https://choosealicense.com/

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionKingView Question on Stackoverflow
Solution 1 - GithubBrechtDeManView Answer on Stackoverflow
Solution 2 - Githubdurgaselvan swaminathanView Answer on Stackoverflow
Solution 3 - GithubFlorian FidaView Answer on Stackoverflow
Solution 4 - GithubJokim SampathView Answer on Stackoverflow
Solution 5 - GithubAvecView Answer on Stackoverflow