rebase-editor icon indicating copy to clipboard operation
rebase-editor copied to clipboard

Simple terminal based sequence editor for git interactive rebase.

Results 7 rebase-editor issues
Sort by recently updated
recently updated
newest added

```bash git rebase -i HEAD~2 ``` ```bash hint: Waiting for your editor to close the file... /usr/local/lib/node_modules/rebase-editor/lib/reducer.js:148 return state.lines[pos]?.action ^ SyntaxError: Unexpected token '.' at wrapSafe (internal/modules/cjs/loader.js:915:16) at Module._compile (internal/modules/cjs/loader.js:963:27)...

These are all the commands available when rebasing (in German): ``` Befehle: # p, pick = Commit verwenden # r, reword = Commit verwenden, aber Commit-Beschreibung bearbeiten # e, edit...

My current configuration is below: ```.gitconfig editor = rebase-editor -c "^M,^G,^g" -m "^#^Y" ``` and the result is as this image: ![image](https://user-images.githubusercontent.com/22126639/71302734-3f57d500-23f2-11ea-9170-63d9032e8c90.png) But I want the marker style to be...

On Ubuntu 18.04, pressing Shift + [UP, RIGHT, DOWN, LEFT] quits and exists the rebase with the message: `Nothing to do`

1. Install ConEmu 2. Run git bash in it 3. Do rebase 4. Empty terminal will be shown, no errors, but no text neither. If you press Enter, it will...

This addition allows users to add the `-c` or `-C` flag to the `fixup` command by using the `ALT_F` and `CTRL_F` keybinds, respectively. References #37

From the interactive rebase commands: ``` # f, fixup [-C | -c] = like "squash" but keep only the previous # commit's log message, unless -C is used, in which...