This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # View the log to find the commit you want to edit: | |
| git log | |
| # Quit out of the log | |
| q | |
| # Rebase from the commit you want to edit, in interactive mode: | |
| git rebase SOME_COMMIT_ID^ --interactive | |
| # This will open an interactive menu in Vi |