-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0869c66
commit f17bcf2
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
``` |