2021-10-22 16:24:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
. "$(dirname "$0")"/demo_helpers.sh
|
|
|
|
|
|
|
|
new_tmp_dir
|
|
|
|
|
2022-10-21 05:13:09 +00:00
|
|
|
comment "Clone a Git repo:"
|
2021-10-22 16:24:02 +00:00
|
|
|
run_command "jj git clone https://github.com/octocat/Hello-World"
|
|
|
|
run_command "cd Hello-World"
|
2022-10-21 05:13:09 +00:00
|
|
|
|
|
|
|
comment "Inspect it:"
|
|
|
|
run_command "jj log -r 'all()'"
|
2021-10-22 16:24:02 +00:00
|
|
|
run_command "jj diff -r b1"
|
2022-10-21 05:13:09 +00:00
|
|
|
|
|
|
|
comment "The repo is backed by the actual Git repo:"
|
2022-02-18 06:20:14 +00:00
|
|
|
run_command "git --git-dir=.jj/repo/store/git log --graph --all --decorate --oneline"
|