- Getting started
- Developing locally
- Generated code
- Contributing changes
- Managing releases
- Packaging
- Updating the website
chezmoi is written in Go and development happens on GitHub. The rest of this document assumes that you've checked out chezmoi locally.
chezmoi requires Go 1.13 or later and Go modules enabled. Enable Go modules by
setting the environment variable GO111MODULE=on
.
chezmoi is a standard Go project, using standard Go tooling, with a few extra tools. Ensure that these extra tools are installed with:
make ensure-tools
Build chezmoi:
go build .
Run all tests:
go test ./...
Run chezmoi:
go run .
chezmoi generates help text, shell completions, embedded files, and the website from a single source of truth. You must run
go generate
if you change includes any of the following:
- Modify any documentation in the
docs/
directory. - Modify any files in the
assets/templates/
directory. - Add or modify a command.
- Add or modify a command's flags.
chezmoi's continuous integration verifies that all generated files are up to date. Changes to generated files should be included in the commit that modifies the source of truth.
Bug reports, bug fixes, and documentation improvements are always welcome. Please open an issue or create a pull request with your report, fix, or improvement.
If you want to make a more significant change, please first open an issue to discuss the change that you want to make. Dave Cheney gives a good rationale as to why this is important.
All changes are made via pull requests. In your pull request, please make sure that:
-
All existing tests pass.
-
There are appropriate additional tests that demonstrate that your PR works as intended.
-
The documentation is updated, if necessary. For new features you should add an entry in
docs/HOWTO.md
and a complete description indocs/REFERENCE.md
. -
All generated files are up to date. You can ensure this by running
go generate
and including any modified files in your commit. -
The code is correctly formatted, according to
gofumports
. You can ensure this by runningmake format
. -
The code passes
golangci-lint
. You can ensure this by runningmake lint
. -
The commit messages match chezmoi's convention, specifically that they begin with a capitalized verb in the imperative and give a short description of what the commit does. Detailed information or justification can be optionally included in the body of the commit message.
-
Commits are logically separate, with no merge or "fixup" commits.
-
The branch applies cleanly to
master
.
Releases are managed with goreleaser
.
To create a new release, push a tag, e.g.:
git tag -a v0.1.0 -m "First release"
git push origin v0.1.0
To build a test release, without publishing, run:
make test-release
If you're packaging chezmoi for an operating system or distribution:
-
Please set the version number, git commit, and build time in the binary. This greatly assists debugging when end users report problems or ask for help. You can do this by passing the following flags to the Go linker:
-X main.version=$VERSION -X main.commit=$COMMIT -X main.date=$DATE -X main.builtBy=$BUILT_BY
$VERSION
should be the chezmoi version, e.g.1.7.3
. Anyv
prefix is optional and will be stripped, so you can pass the git tag in directly.$COMMIT
should be the full git commit hash at which chezmoi is built, e.g.4d678ce6850c9d81c7ab2fe0d8f20c1547688b91
.$DATE
should be the date of the build in RFC3339 format, e.g.2019-11-23T18:29:25Z
.$BUILT_BY
should be a string indicating what mechanism was used to build the binary, e.g.goreleaser
. -
Please enable cgo, if possible. chezmoi can be built and run without cgo, but the
.chezmoi.username
and.chezmoi.group
template variables may not be set correctly on some systems. -
chezmoi includes a
docs
command which prints its documentation. By default, the docs are embedded in the binary. You can disable this behavior, and have chezmoi read its docs from the filesystem by building with thenoembeddocs
build tag and setting the directory where chezmoi can find them with the-X github.com/twpayne/chezmoi/cmd.DocDir=$DOCDIR
linker flag. For example:go build -tags noembeddocs -ldflags "-X github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/chezmoi" .
To remove the
docs
command completely, use thenodocs
build tag. -
chezmoi includes an
upgrade
command which attempts to self-upgrade. You can remove this command completely by building chezmoi with thenoupgrade
build tag. -
chezmoi includes shell completions in the
completions
directory. Please include these in the package and install them in the shell-appropriate directory, if possible. -
If the instructions for installing chezmoi in chezmoi's install guide are absent or incorrect, please open an issue or submit a PR to correct them.
The website is generated with Hugo
and served with GitHub pages from the gh-pages
branch to GitHub.
Before building the website, you must download the Hugo Book Theme by running:
git submodule update --init
Test the website locally by running:
( cd chezmoi.io && hugo serve )
and visit http://localhost:1313/.
To build the website in a temporary directory, run:
( cd chezmoi.io && make )
From here you can run
git show
to show changes and
git push
to push them. You can only push changes if you have write permissions to the chezmoi GitHub repo.