# Interactive rebasing

So what if I want to manipulate multiple commits at once?

This is where interactive rebasing comes in. Given a bunch of commits, you can change the order, drop certain commits or amend them.

### Exercise

Go to <https://github.com/nushackers/git-exercise>

There's a type in `1dab2c`. Let's amend it and propagate it up.

In lazygit:

* Use v to select all the commits you want in your interactive rebase
* Hit e to start the interactive rebase
* While hovering over a commit
  * p to pick
  * d to drop
  * e to edit
  * s to squash
  * \<C-j> or \<C-k> to rearrange your commits


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wiki.nushackers.org/hackerschool/lightning-git/interactive-rebasing.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
