mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-28 17:41:14 +00:00
demos: clarify command for finding operation to undo
The command grepped for 'o ' and picked the third line. That was meant to match the graph nodes only, but it also matched the 'jj co master' line. Let's match only 'o' at the beginning of the line, and throw in another space for good measure (since that's what we get from the new default graph style from Sapling).
This commit is contained in:
parent
74ffe7f688
commit
cb86efac61
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ is:"
|
|||
run_command "jj op log --color=always | head"
|
||||
|
||||
comment "Let's undo that rebase operation:"
|
||||
rebase_op=$(jj --color=never op log | grep 'o ' | sed '3q;d' | cut -b4-15)
|
||||
rebase_op=$(jj --color=never op log | grep '^o ' | sed '2q;d' | cut -b4-15)
|
||||
run_command "jj undo $rebase_op"
|
||||
|
||||
comment "Note that only the rebase was undone, and the
|
||||
|
|
Loading…
Reference in a new issue