Add optional stash commands to Git rebase instructions

This commit is contained in:
CodeDevMLH
2026-02-03 23:04:58 +01:00
parent 8a50cef330
commit 6948953778

View File

@@ -26,9 +26,11 @@ git merge main
Setzt deine Commits neu auf die Spitze eines anderen Branches. Die Commit-IDs werden dabei neu geschrieben.
```bash
git stash # (optional) Änderungen parken.
git checkout dev
git fetch origin
git rebase origin/main
git stash pop # (optional) Änderungen zurückholen.
```
| Details | |