379

When I created a GitHub project I chose None.

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

screenshot

BrechtDeMan
  • 6,589
  • 4
  • 24
  • 25
King
  • 3,457
  • 3
  • 12
  • 22

5 Answers5

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

step 0


2. 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.

BrechtDeMan
  • 6,589
  • 4
  • 24
  • 25
  • 5
    As a bonus, the license will now be displayed in the upper right part of the page, after the number of contributors. – Dan Dascalescu Sep 13 '16 at 22:57
  • 3
    So it is! Good feature. Probably not on-topic enough to include in my answer, but thanks for highlighting it. – BrechtDeMan Sep 20 '16 at 09:26
  • 6
    Note that the most common file name is simply LICENSE, while LICENSE.txt and LICENSE.md are less common file names. – vog Apr 28 '18 at 21:25
378
  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.
AurumTechie
  • 166
  • 3
  • 14
106

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.

Florian F
  • 4,044
  • 3
  • 30
  • 31
11
  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)
Jokim Sampath
  • 127
  • 1
  • 4
2

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/

Avec
  • 1,626
  • 21
  • 31