feat(jj): add jjgfa alias (#13105)

This commit is contained in:
Cyril Plisko 2025-05-06 18:27:04 +03:00 committed by GitHub
parent 51d0e0aa1d
commit 62afbdebb9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ plugins=(... jj)
| jje | `jj edit` | | jje | `jj edit` |
| jjgcl | `jj git clone` | | jjgcl | `jj git clone` |
| jjgf | `jj git fetch` | | jjgf | `jj git fetch` |
| jjgfa | `jj git fetch --all-remotes` |
| jjgp | `jj git push` | | jjgp | `jj git push` |
| jjl | `jj log` | | jjl | `jj log` |
| jjla | `jj log -r "all()"` | | jjla | `jj log -r "all()"` |

View File

@ -42,6 +42,7 @@ alias jjds='jj desc'
alias jje='jj edit' alias jje='jj edit'
alias jjgcl='jj git clone' alias jjgcl='jj git clone'
alias jjgf='jj git fetch' alias jjgf='jj git fetch'
alias jjgfa='jj git fetch --all-remotes'
alias jjgp='jj git push' alias jjgp='jj git push'
alias jjl='jj log' alias jjl='jj log'
alias jjla='jj log -r "all()"' alias jjla='jj log -r "all()"'