cleanup: update references to .jj/store/git to .jj/repo/store/git

The `store/` directory (and many others) recently moved into
`.jj/repo/`, but I forgot to update a few places.
This commit is contained in:
Martin von Zweigbergk 2022-02-17 22:20:14 -08:00
parent 7c247116b9
commit d9b364442e
2 changed files with 2 additions and 2 deletions

View File

@ -17,5 +17,5 @@ pause 5
run_command "jj diff -r b1"
pause 2
run_command "# The repo is backed by the actual Git repo:"
run_command "git --git-dir=.jj/store/git log --graph --all --decorate --oneline"
run_command "git --git-dir=.jj/repo/store/git log --graph --all --decorate --oneline"
'

View File

@ -13,7 +13,7 @@ for more verbose help).
To create an empty repo using the Git backend, use `jj init --git <name>`. Since
the command creates a Jujutsu repo, it will have a `.jj/` directory. The
underlying Git repo will be inside of that directory (currently in
`.jj/store/git/`).
`.jj/repo/store/git/`).
## Creating a repo backed by an existing Git repo