This commit is contained in:
Louis Lam 2023-09-07 16:35:15 +08:00
parent d6302198f3
commit 9f7f7a182e
1 changed files with 8 additions and 0 deletions

View File

@ -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>
```