Update git
commands
Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
parent
5f27454442
commit
a5d25d87ec
1 changed files with 5 additions and 5 deletions
10
README.md
10
README.md
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue