@@ -24,22 +24,22 @@ repository:
2424git remote add upstream
[email protected] :StagPython/StagPy.git
2525```
2626
27- To sync your fork with the main repository, you can run the following::
27+ To sync your fork with the main repository, you can run the following:
2828
2929``` sh title="shell"
3030git switch master
3131git pull upstream master
3232git push origin
3333```
3434
35- To add your own modifications, create a new branch from the tip of master::
35+ To add your own modifications, create a new branch from the tip of master:
3636
3737``` sh title="shell"
3838git switch -c branch-name master
3939```
4040
41- where `` branch-name ` ` is the desired branch name. Modify the code as desired,
42- commit it, and push it on your fork::
41+ where ` branch-name ` is the desired branch name. Modify the code as desired,
42+ commit it, and push it on your fork:
4343
4444``` sh title="shell"
4545git push -u origin branch-name
@@ -52,7 +52,7 @@ Testing
5252-------
5353
5454StagPy uses [ tox for code testing] ( https://tox.wiki/ ) . Make sure it
55- is installed and up to date on your system::
55+ is installed and up to date on your system:
5656
5757``` sh title="shell"
5858python3 -m pip install -U tox
@@ -66,7 +66,7 @@ Documentation
6666-------------
6767
6868The StagPy documentation is built with [ MkDocs] ( https://www.mkdocs.org/ ) . To
69- build it locally, install the needed packages::
69+ build it locally, install the needed packages:
7070
7171``` sh title="shell"
7272python3 -m pip install -r docs/requirements.txt
0 commit comments