Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 1.81 KB

CONTRIBUTING.md

File metadata and controls

62 lines (40 loc) · 1.81 KB

Contributing to opentelemetry-cpp-contrib

The OpenTelemetry C/C++ special interest group (SIG) meets regularly. See the OpenTelemetry community repo for information on this and other language SIGs.

See the public meeting notes for a summary description of past meetings. To request edit access, join the meeting or get in touch on Gitter.

Development

TBD

Build and Run Code Examples

TBD

Pull Requests

How to Send Pull Requests

Everyone is welcome to contribute code to opentelemetry-cpp-contrib via GitHub pull requests (PRs).

To create a new PR, fork the project in GitHub and clone the upstream repo:

git clone --recursive https://github.com/open-telemetry/opentelemetry-cpp-contrib.git

Add your fork as a remote:

git remote add fork https://github.com/YOUR_GITHUB_USERNAME/opentelemetry-cpp-contrib.git

Check out a new branch, make modifications and push the branch to your fork:

git checkout -b feature
# edit files
git commit
git push fork feature

Open a pull request against the main opentelemetry-cpp-contrib repo.

How to Receive Comments

  • If the PR is not ready for review, please put [WIP] in the title, tag it as work-in-progress, or mark it as draft.
  • Make sure CLA is signed and CI is clear.

How to Get PRs Merged

This section needs to be written.

Useful Resources

Please refer to main OpenTelemetry C++ SDK contributing guidelines for more details.