Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/modules/contributing/pages/developing.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ allow_loading_unsigned_plugins = opennms-opennms-app
. Use Git to check out the repository:
+
[source, shell]
git clone https://github.com/OpenNMS/grafana-plugin.git opennms-grafana-plugin
git clone --branch release-9.x https://github.com/OpenNMS/grafana-plugin.git opennms-grafana-plugin
Copy link
Copy Markdown
Contributor

@synqotik synqotik Oct 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We may want to change this to something like:

. Use Git to check out the repository:
+
[source, shell]
git clone https://github.com/OpenNMS/grafana-plugin.git opennms-grafana-plugin

. Navigate to your plugin directory:
+
[source, shell]
cd opennnms-grafana-plugin

. Switch to the branch you want to work on. For OPG compatible with Grafana 9-11, you should work in the `release-9.x` branch:
+
[source, shell]
git branch release-9.x
git pull

. If you plan on making changes or making a PR, you should make a branch off of the main release branch:
+
[source, shell]
git checkout -b myusername/my-feature-name


. Navigate to your plugin directory:
+
Expand Down