Skip to content

Commit

Permalink
#77: Add note about Fossil setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mtkennerly committed Feb 9, 2024
1 parent 0869c66 commit f17bcf2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,25 @@ Development requires Python 3.7+.
pipx runpip mkdocs install -r docs/requirements.txt
mkdocs serve
```

## VCS setup
Some of the VCS tools tested require a minimum configuration to work.
Here is an example of how to configure them:

* Git:
```
git config --global user.name "foo"
git config --global user.email "[email protected]"
```
* Darcs:
* Set the `DARCS_EMAIL` environment variable (e.g., `foo <[email protected]>`).
* Bazaar:
```
bzr whoami 'foo <[email protected]>'
```
* Fossil:
* May require setting the `HOME` and `USER` environment variables on some platforms.
* Pijul:
```
pijul key generate test
```

0 comments on commit f17bcf2

Please sign in to comment.