How can I license my project on Github, if when I created it I did not license it?

1

I want to license my projects already created in Github but when I created them I did not put them on and now I do not know how to put them on.

    
asked by Joel Esteban Diaz Arévalo 27.05.2017 в 05:04
source

1 answer

1

You just need to create the license file and commit to the repository.

Create the license file with a notebook and enter the text of the license.

Then at the root of the local project folder:

git add. git commit -m "License" git push origin master

that's it

    
answered by 27.05.2017 / 05:28
source