jj-cli 0.14.0

Jujutsu - an experimental version control system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# NOTE: ensure you update docs/revsets.md with documentation when
# adding/updating any of these aliases

[revset-aliases]
'trunk()' = '''
latest(
  remote_branches(exact:"main", exact:"origin") | 
  remote_branches(exact:"master", exact:"origin") | 
  remote_branches(exact:"trunk", exact:"origin") |
  remote_branches(exact:"main", exact:"upstream") |
  remote_branches(exact:"master", exact:"upstream") |
  remote_branches(exact:"trunk", exact:"upstream") |
  root()
)
'''

'immutable_heads()' = 'trunk() | tags()'