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