anthodev/jj.fishpublic Fork 0
051ee38
Commits
Clone
git clone https://git.rickub.com/anthodev/jj.fish.git
git clone ssh://git@rickub.com/anthodev/jj.fish.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

feat: added jj undo alias

Cedric ANTHONY committed 2026-03-16T23:57:04+01:00 Browse files
051ee38 parent: b3a7435
modified README.md +1 -0
@@ -26,6 +26,7 @@ fisher install anthodev/jj.fish
2626 | `jjr` | `jj resolve` | Resolve conflicts |
2727 | `jja <arg>` | `jj abandon <arg>` | Abandon a change |
2828 | `jjh` | `jj edit 'heads(@::)'` | Edit head of working copy |
29+| `jju` | `jj undo` | Undo last operation |
2930
3031 ### Rebase
3132
@@ -26,6 +26,7 @@ fisher install anthodev/jj.fish
26 | `jjr` | `jj resolve` | Resolve conflicts |26 | `jjr` | `jj resolve` | Resolve conflicts |
27 | `jja <arg>` | `jj abandon <arg>` | Abandon a change |27 | `jja <arg>` | `jj abandon <arg>` | Abandon a change |
28 | `jjh` | `jj edit 'heads(@::)'` | Edit head of working copy |28 | `jjh` | `jj edit 'heads(@::)'` | Edit head of working copy |
29+| `jju` | `jj undo` | Undo last operation |
29 30
30 ### Rebase31 ### Rebase
31 32
added completions/jju.fish +1 -0
new file mode 100644
@@ -0,0 +1 @@
1+complete --command jju --description "Undo last operation"
new file mode 100644
@@ -0,0 +1 @@
1+complete --command jju --description "Undo last operation"
added functions/jju.fish +3 -0
new file mode 100644
@@ -0,0 +1,3 @@
1+function jju
2+ jj undo
3+end
new file mode 100644
@@ -0,0 +1,3 @@
1+function jju
2+ jj undo
3+end