Skip to content

Commit e87c061

Browse files
updated version
1 parent a450a32 commit e87c061

File tree

1 file changed

+27
-5
lines changed

1 file changed

+27
-5
lines changed

README.md

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,38 @@ pip install dialoget==0.0.1
3737
```
3838

3939

40+
4041
## Contribution
4142

43+
44+
### Github preparation
45+
46+
+ [Git - First-Time Git Setup](https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup)
47+
```shell
48+
git config --global user.name "John Doe"
49+
git config --global user.email [email protected]
50+
```
51+
52+
+ [About remote repositories - GitHub Docs](https://docs.github.com/en/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls)
53+
```shell
54+
ssh-keygen -p -f ~/.ssh/id_ed25519
55+
```
56+
57+
+ [SSH and GPG keys on Github](https://github.com/settings/keys)
58+
```shell
59+
cat ~/.ssh/id_ed25519.pub
60+
```
61+
62+
if, after git push will ask for credentials put the API key as passwort
63+
+ [Personal Access Tokens (Classic)](https://github.com/settings/tokens)
64+
65+
66+
### Repository update
67+
4268
To update a release of a Python package, you'll typically go through the following general steps:
4369

4470
1. Update the code or documentation to incorporate the new changes or improvements.
45-
71+
4672
2. Update the package version number to indicate a new release:
4773
- Follow semantic versioning (or "semver") principles, using version numbers like MAJOR.MINOR.PATCH:
4874
- Increment the MAJOR version when you make incompatible API changes,
@@ -93,10 +119,6 @@ To update a release of a Python package, you'll typically go through the followi
93119

94120

95121

96-
97-
98-
99-
100122
### Build
101123
build your package, first ensure you have the latest versions of `build` and `wheel` installed:
102124

0 commit comments

Comments
 (0)