From 9f7f7a182e7fc9102b89338e35ff92878fd937d8 Mon Sep 17 00:00:00 2001
From: Louis Lam <louislam@users.noreply.github.com>
Date: Thu, 7 Sep 2023 16:35:15 +0800
Subject: [PATCH] Minor

---
 CONTRIBUTING.md | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 71717b802..aa6cf70db 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -284,3 +284,11 @@ git remote add production https://github.com/louislam/uptime-kuma.wiki.git
 git pull
 git push production master
 ```
+
+## Useful Commands
+
+Change the base of a pull request such as `master` to `1.23.X`
+
+```
+git rebase --onto <new parent> <old parent>
+```