diff --git a/README.md b/README.md index 9147336..5c14999 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Users: Will run your software locally
Developers: Any changes they make to your software need to be available to users; they cannot use your library in a piece of proprietary software ```fish -git fetch -u https://code.gkaklas.gr/license/gpl.git main:main ; git push +git fetch https://code.gkaklas.gr/license/gpl.git && git cherry-pick FETCH_HEAD && git commit --verbose --gpg-sign --signoff --amend ``` ## AGPL @@ -18,7 +18,7 @@ Users: Will interact with your software by using network requests
Developers: Any changes they make to your software need to be available to users ```fish -git fetch -u https://code.gkaklas.gr/license/agpl.git main:main ; git push +git fetch https://code.gkaklas.gr/license/agpl.git && git cherry-pick FETCH_HEAD && git commit --verbose --gpg-sign --signoff --amend ``` ## LGPL @@ -27,7 +27,7 @@ Users: Will use proprietary software that uses your library
Developers: Any changes they make to your library need to be available to users ```fish -git fetch -u https://code.gkaklas.gr/license/lgpl.git main:main ; git push +git fetch https://code.gkaklas.gr/license/lgpl.git && git cherry-pick FETCH_HEAD && git commit --verbose --gpg-sign --signoff --amend ``` ## MIT @@ -35,7 +35,7 @@ git fetch -u https://code.gkaklas.gr/license/lgpl.git main:main ; git push Only requires preservation of copyright and license notices ```fish -git fetch -u https://code.gkaklas.gr/license/MIT.git main:main ; git push +git fetch https://code.gkaklas.gr/license/mit.git && git cherry-pick FETCH_HEAD && git commit --verbose --gpg-sign --signoff --amend ``` ## Apache @@ -43,7 +43,7 @@ git fetch -u https://code.gkaklas.gr/license/MIT.git main:main ; git push Only requires preservation of copyright and license notices. Contributors to your software provide an express grant of patent rights ```fish -git fetch -u https://code.gkaklas.gr/license/apache.git main:main ; git push +git fetch https://code.gkaklas.gr/license/apache.git && git cherry-pick FETCH_HEAD && git commit --verbose --gpg-sign --signoff --amend ``` # Choosing a license