Update git commands

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2025-07-06 17:18:59 +03:00
parent 5f27454442
commit a5d25d87ec
Signed by: gkaklas
GPG key ID: C0CAB8A6BDC9399D

View file

@ -9,7 +9,7 @@ Users: Will run your software locally<br />
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<br />
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<br />
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