| 1234567891011121314151617181920212223 |
- [user]
- name = 'raylu'
- email = '90059+raylu@users.noreply.github.com'
- [ui]
- pager = 'delta'
- default-command = 'l'
- show-cryptographic-signatures = true
- diff-formatter = ':git' # https://jj-vcs.github.io/jj/latest/config/#processing-contents-to-be-paged
- [signing] # https://jj-vcs.github.io/jj/latest/config/#automatically-signing-commits
- behavior = 'drop'
- backend = 'ssh'
- backends.ssh.allowed-signers = '~/.ssh/allowed-signers'
- key = '~/.ssh/id_ed25519.pub'
- [git]
- sign-on-push = true
- [aliases]
- l = ['log', '-r', '(trunk()..@):: | ancestors(trunk()..@, 4) | bookmarks()', '-T', 'builtin_log_compact_full_description']
- ll = ['log', '-r', 'ancestors(present(@) | present(trunk()) | bookmarks() | tracked_remote_bookmarks() | visible_heads(), 2)']
- ls = ['log', '-r', '..(@ | present(trunk()))', '-T', 'builtin_log_compact_full_description']
|