* Migrate docs to master branch, add action to deploy to pages branch on push * Update docs, build pipeline to reflect new method of updating gh-pages * Removed make build-gh-pages from post-commit hook Co-authored-by: Josh Rabinowitz <joshr@joshr.com>
16 KiB
Contributing
Your contributions are always welcome!
Process
Environment
For development with git-secret
you should have these tools:
- git
- bash
- bundler
- gawk
- gnupg (or gnupg2), see below if not packaged by your distribution/OS (i.e. MacOS)
- ruby
- sha256sum (on freebsd and MacOS
shasum
is used instead) - shellcheck
To test git-secret
using test-kitchen, which is optional and uses docker to test on multiple distributions,
you will also need:
The below only required if dealing with manuals, gh-pages
or releases:
- ruby, ruby-dev
- aspell, to check your changes for spelling errors
Environment MacOS
- install Homebrew
- install gnupg2 with
brew install gnupg2
For docker/test-kitchen (optional, for testing multiple distros locally using docker)
-
install Docker for Mac
-
install ruby2.6 and kitchen dependencies with
brew install rbenv ruby-build rbenv-vars; rbenv install 2.6.3; rbenv rehash; rbenv global 2.6.3;
(You can also use rvm
instead of rbenv
, but brew packages rbenv
for you.)
then use
gem install bundler kitchen-ansible serverspec kitchen-docker kitchen-verifier-serverspec
If you have trouble getting test-kitchen and docker working on your mac to test git-secret with, see #534 or let us know by filing an issue.
Getting started
-
Create your own or pick an opened issue from the tracker. Take a look at the
help-wanted
tag -
Fork the git-secret repo and then clone the repository using a command like
git clone https://github.com/${YOUR_NAME}/git-secret.git
-
Make sure that everything works on the current platform by running
make test
. You can also try the experimentalSECRETS_TEST_VERBOSE=1 make test
, which will show you a lot of debug output while the tests are running. Note that 'experimental' features may change or be removed in a future version ofgit-secret
. -
If you want to test on multiple operating systems, Run local CI tests (optional; this will automatically happen on Travis-CI when you submit a PR).
Running the CI tests locally is optional. The tests will happen automatically on Travis-CI
when you create a PR for git-secret
, and again when any PR is merged.
To verify functionality on supported platforms use bundle exec kitchen verify --test-base-path="$PWD/.ci/integration"
.
See [test-kitchen](https://kitchen.ci/) and
kitchen help verifyfor more info about using
kitchen verify`.
Code style
New features and changes should aim to be as clear, concise, simple, and consistent
-
clear: make it as obvious as possible what the code is doing
-
concise: your PR should be as few characters (not just lines) of changes as reasonable. However, generally choose clarity over being concise.
Clarity and conciseness can be in conflict with each other. But it's more important for the code to be understandable than for it to be small. Therefore favor writing clear code over making shorter diffs in your PRs. -
simple: this dovetails with the previous two items. git-secret is a security product, so it's best to have the code be easy to understand. This also aids future development and helps minimize bugs.
-
consistent: Write code that is consistent with the surrounding code and the rest of the git-secret code base. Every code base has its own conventions and style that develop and accrete over time.
Consistency also means that the inputs and outputs of git-secret should be as consistent as reasonable with related Unix and git tools, and follow the 'rule of least surprise', also known as the 'principle of least astonishment': https://en.wikipedia.org/wiki/Principle_of_least_astonishment
We wrote this to clarify our thinking about how git-secret should be written. Of course, these are philosophical goals, not necessities for releasing code, so balancing these four ideals perfectly is both unwarranted and impossible.
Writing PRs
If you're planning a large change to git-secret
(for example, a lot of lines/characters of diffs, affecting multiple commands,
changing/adding a lot of behavior, or adding multiple command-line options), it's best to discuss the changes in an Issue first.
Also it's often best to implement larger or complex changes as a series of planned-out, smaller PRs,
each making a small set of specific changes. This facilitates discussions of implementation, which often come to light
only after seeing the actual code used to perform a task.
As mentioned above, we seek to be consistent with surrounding git and Unix tools, so when writing changes to git-secret, think about the input, output, and command-line options that similar Unix commands use.
Our favor toward traditional Unix and git command-style inputs and outputs can also mean it's appropriate to lean heavily on git and widely-used Unix command features instead of re-implementing them in code.
Development Process
-
Firstly, you should setup git-secret's development git hooks with
make install-hooks
This will copy the hooks from utils/hooks into .git/hooks/pre-commit and .git/hooks/post-commit -
Make changes to the git secret files that need to be changed
-
When making changes to any files inside
src/
, for changes to take effect you will need to rebuild thegit-secret
script withmake clean && make build
-
Run
shellcheck
against all your changes withmake lint
. You should also check your changes for spelling errors using 'aspell -c filename'. -
Add an entry to CHANGELOG.md, referring to the related issue # if appropriate
-
Change the .ronn file(s) in man/man1 and man/man7 to document your changes if appropriate
-
Now, add all your files to the commit with
git add --all
and commit changes withgit commit
. Write a good commit message which explains your work -
When running
git commit
the tests will run automatically, your commit will be canceled if they fail. You can run the tests manually withmake clean build test
. If you want to make a commit and not run the pre- and post-commit hooks, use 'git commit -n' -
Push to your repository, and make a pull-request against
master
branch. It's ideal to have one commit per pull-request, but don't worry, it's easy tosquash
PRs into a small number of commits when they're merged.
Branches
We have two long-live branches: master
for the git-secret code and man pages, and gh-pages
for the static web site.
The gh-pages
branch tracks the master
branch's docs
folder, and is kept up-to-date using a GitHub Action.
Development looks like this:
your-branch
->master
master
branch is protected, so only fully tested code goes there. It is also used to create a newgit
tag and agithub
release
By convention, you can name your branches like issue-###-short-description
, but that's not required.
The gh-pages
branch is used for the pages at git-secret.io
. See 'Release Process' below.
Continuous integration
Local CI is done with the help test-kitchen
. test-kitchen
handles multiple test-suites on various platforms.
You can run our CI tests locally, but it is not strictly required in order to do development or testing of git-secret. When you have
test-kitchen
installed, bundle exec kitchen list
will output the list of test suites to be run against supported platforms.
Cloud CI is done with the help of Travis-CI, which handles testing on multiple environments using
Docker
-based jobs or so-called 'integration tests', which create a local release, install it with the package manager and then run unit-tests and system checksOSX
jobs, which handle basic unit-tests onMacOS
(Travis still calls MacOS 'OSX')- Native
travis
jobs, which handle basic unit-tests and style checks
Running local ci-tests with test-kitchen
Ci-tests are only necessary if you want to test git-secret on multiple OS'es using docker and test-kitchen, like we do on travis-ci.
- Install required gems with
bundle install
. - Run ci-tests with
bundle exec kitchen verify --test-base-path="$PWD/.ci/integration"
Writing tests
git-secret
uses bats-core for testing.
See the files in tests/ and the bats-core
documentation for details.
Because the output of many commands can be affected by the SECRETS_VERBOSE environment variable (which enables verbosity), it's best not to expect a particular number of lines of output from commands.
Release process
To create a new release, (you'll first need permission to commit to the repo, of course):
Update the content of CHANGELOG.md
for the release (this should be a matter of changing headers),
and update the version string in src/version.sh
. Then, when you commit
these changes,
the git-hooks described below will perform most of the steps needed for the github release.
So a lot of the release process is defined in the git
-hooks and .travis.yml
.
When creating a commit inside the master
branch (it is usually a documentation and changelog update with the version bump inside src/version.sh
) the
pre-commit and post-commit hooks will trigger three events.
-
pre-commit
: run the test suite will be locally -
pre-commit
: generate and update the manuals and add them to the current commit withmake build-man
-
post-commit
: a GitHub Action will update thegh-pages
branch to match thedocs
folder in themaster
branch, which will push updated manuals to the git-secret site. -
post-commit
: newgit
tag (such as v0.3.1) will be automatically created if the version is changed, using something like
if [[ "$NEWEST_TAG" != "v${SCRIPT_VERSION}" ]]; then
git tag -a "v${SCRIPT_VERSION}" -m "version $SCRIPT_VERSION"
fi
After all the above hooks have executed, travis-ci will test and build releases for specific platforms (see https://bintray.com/sobolevn/deb/git-secret, https://bintray.com/sobolevn/rpm/git-secret, etc).
While travis is doing it's building and testing, finish the release on github by pushing the new tag with
git push --tags
and then go to https://github.com/sobolevn/git-secret/releases and 'draft a new release', setting up a production release like the previous ones.
About GnuPG
Here are some links to gnupg documentation that might be useful for those working with git-secret:
Travis releases
After you commit a tag that matches the pattern '^v' and the tests succeed, scripts run on Travis-CI
will publish new deb
and rpm
packages to bintray
.
(If you need to override a previous release (this is highly discouraged) you will need to add "override": 1
into matrixParams
, see deb-deploy.sh
and rpm-deploy.sh
)
Manual releases
Releases to brew
are made manually, and involve opening a PR on the Homebrew Core repo .
To get started, see the
Homebrew docs about Formulae-related PRs
and brew bump-formula-pr --help
Dockerhub releases
Dockerhub
contains Docker
images with different OSes used for testing. It is updated via a github
webhook on commit into master
.
Downstream Packages
There are several distributions and packaging systems that may already have git-secret packaged for your distribution (although sometimes their versions are not the most current, and we recommend all users upgrade to 0.2.5 or above).
Notes to Downstream Packagers (Those who make packages for specific OSes/distributions)
First of all, thank you for packaging git-secret for your platform! We appreciate it.
We also would like to welcome you to collaborate or discuss any issues, ideas or thoughts you have about git-secret by submitting issue report (which can also be feature requests) or pull requests via the git repo at git-secret on github
Please let us know if there are any changes you'd like to see to the source, packaging, testing, documentation, or other aspect of git-secret. We look forward to hearing from you.
Financial contributions
We also welcome financial contributions in full transparency on our open collective. Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed.
Credits
Contributors
Thank you to all the people who have already contributed to git-secret via commits to our git repository!
Backers
Thank you to all our backers! [Become a backer]
Sponsors
Thank you to all our sponsors! (please ask your company to also support this open source project by becoming a sponsor)