mirror of
https://github.com/martinvonz/jj.git
synced 2024-12-24 20:54:15 +00:00
docs/github.md: Useful Revsets: fix revset for @ ancestry without remotes
This also fixes a mismatch between using ::@ to list ancestors and calling them descendants. Signed-off-by: Tim Janik <timj@gnu.org>
This commit is contained in:
parent
d57425964e
commit
25117d7d01
1 changed files with 2 additions and 2 deletions
|
@ -222,10 +222,10 @@ Log all remote bookmarks that you authored or committed to:
|
|||
$ jj log -r 'remote_bookmarks() & (mine() | committer(your@email.com))'
|
||||
```
|
||||
|
||||
Log all descendants of the current working copy that aren't on any remote:
|
||||
Log all ancestors of the current working copy that aren't on any remote:
|
||||
|
||||
```shell
|
||||
$ jj log -r '::@ & ~remote_bookmarks()'
|
||||
$ jj log -r 'remote_bookmarks()..@'
|
||||
```
|
||||
|
||||
## Merge conflicts
|
||||
|
|
Loading…
Reference in a new issue