summaryrefslogtreecommitdiff
path: root/vendor/github.com/godbus/dbus/v5/CONTRIBUTING.md
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-03-10 19:31:14 +0100
committerGitHub <noreply@github.com>2020-03-10 19:31:14 +0100
commita83a94b095b298c1e8cbcaf20f0744a5807df1de (patch)
tree132e6491ef4e15caa7d7296d2492dbc1f2cb41d8 /vendor/github.com/godbus/dbus/v5/CONTRIBUTING.md
parent173f430852e52a1acf69b4d9d18da20893031a79 (diff)
parent450361fc640751c2a33210a02ceff0874c9f449b (diff)
downloadpodman-a83a94b095b298c1e8cbcaf20f0744a5807df1de.tar.gz
podman-a83a94b095b298c1e8cbcaf20f0744a5807df1de.tar.bz2
podman-a83a94b095b298c1e8cbcaf20f0744a5807df1de.zip
Merge pull request #5448 from vrothberg/update-systemd
update systemd & dbus dependencies
Diffstat (limited to 'vendor/github.com/godbus/dbus/v5/CONTRIBUTING.md')
-rw-r--r--vendor/github.com/godbus/dbus/v5/CONTRIBUTING.md50
1 files changed, 50 insertions, 0 deletions
diff --git a/vendor/github.com/godbus/dbus/v5/CONTRIBUTING.md b/vendor/github.com/godbus/dbus/v5/CONTRIBUTING.md
new file mode 100644
index 000000000..c88f9b2bd
--- /dev/null
+++ b/vendor/github.com/godbus/dbus/v5/CONTRIBUTING.md
@@ -0,0 +1,50 @@
+# How to Contribute
+
+## Getting Started
+
+- Fork the repository on GitHub
+- Read the [README](README.markdown) for build and test instructions
+- Play with the project, submit bugs, submit patches!
+
+## Contribution Flow
+
+This is a rough outline of what a contributor's workflow looks like:
+
+- Create a topic branch from where you want to base your work (usually master).
+- Make commits of logical units.
+- Make sure your commit messages are in the proper format (see below).
+- Push your changes to a topic branch in your fork of the repository.
+- Make sure the tests pass, and add any new tests as appropriate.
+- Submit a pull request to the original repository.
+
+Thanks for your contributions!
+
+### Format of the Commit Message
+
+We follow a rough convention for commit messages that is designed to answer two
+questions: what changed and why. The subject line should feature the what and
+the body of the commit should describe the why.
+
+```
+scripts: add the test-cluster command
+
+this uses tmux to setup a test cluster that you can easily kill and
+start for debugging.
+
+Fixes #38
+```
+
+The format can be described more formally as follows:
+
+```
+<subsystem>: <what changed>
+<BLANK LINE>
+<why this change was made>
+<BLANK LINE>
+<footer>
+```
+
+The first line is the subject and should be no longer than 70 characters, the
+second line is always blank, and other lines should be wrapped at 80 characters.
+This allows the message to be easier to read on GitHub as well as in various
+git tools.