Skip to content

Commit

Permalink
tutorial: link to Steve Klabnik's tutorial, mention jj log -r ::
Browse files Browse the repository at this point in the history
I was thinking of updating the tutorial in #4168, but conversations like [this
one on
Discord](https://discord.com/channels/968932220549103686/968932220549103689/1269803837070377076)
suggest that many people aren't reading it anyway.

So, this is an attempt to quickly patch up the most relevant things before the
upcoming release.
  • Loading branch information
ilyagr committed Aug 6, 2024
1 parent 6fc0c7b commit b212328
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Tutorial

> **Hint:** This tutorial has become somewhat out of date. Many people find
> the alternative (not quite finished) [tutorial by Steve
> Klabnik](https://steveklabnik.github.io/jujutsu-tutorial/) helpful.
This text assumes that the reader is familiar with Git.

## Preparation
Expand Down Expand Up @@ -178,6 +182,10 @@ ancestors (`::foo`), descendants (`foo::`), DAG range (`foo::bar`, like
`git log --ancestry-path`), range (`foo..bar`, same as Git's). See
[the revset documentation](revsets.md) for all revset operators and functions.
> **Hint:** If the default `jj log` omits some commits you expect to see, you
> can always run `jj log -r ::` (or, equivalently, `jj log -r 'all()'`) to see
> all the commits.
## Conflicts
Now let's see how Jujutsu deals with merge conflicts. We'll start by making some
Expand Down

0 comments on commit b212328

Please sign in to comment.