wiki: small precision in dev env

This commit is contained in:
jubnl
2026-05-25 22:16:16 +02:00
parent 8410d7c4a5
commit b25eb18ea4
+2 -1
View File
@@ -58,6 +58,7 @@ git rebase upstream/dev # or: git merge upstream/dev
Working on a dedicated branch keeps your changes isolated and makes PRs easier to review:
```bash
# Create a new branch off of dev
git checkout -b fix/my-changes origin/dev
```
@@ -153,7 +154,7 @@ git add .
git commit -m "fix: describe your change"
# Push to your fork's dev branch
git push origin fix/my-changes:dev
git push origin fix/my-changes
# Or if working directly on dev
git push origin dev