@@ -12,19 +12,19 @@ import (
12
12
"gopkg.in/src-d/go-git.v4/storage"
13
13
)
14
14
15
- // worktreeStorer fake out the storage layer in such a way that it
15
+ // worktreeStorer fakes out the storage layer in such a way that it
16
16
// stores its index, and any reference modifications, in a .git/
17
17
// directory in the worktree, but everything else goes through the
18
- // main bare repo's .git directory. This is useful for making a quick
18
+ // main repo's .git directory. This is useful for making a quick
19
19
// checkout of a git repo in a new directory, without making a full
20
20
// git clone. For example, consider the following instance:
21
21
//
22
22
// * `storage.Storer` points to a bare repo stored in KBFS, say
23
- // `/keybase/team/keybase/.kbfs_git/secrets/.git `.
23
+ // `/keybase/team/keybase/.kbfs_git/secrets/`.
24
24
// * `delta` is the same as above, but cast as a `DeltaObjectStorer`.
25
25
// * `wtDotgit` can be pointed anywhere else in KBFS where you want to
26
- // expose a checked-out version of the keybase secrets repo, say
27
- // `/keybase/private/strib/.kbfs_autogit/team/keybase/secrets/`
26
+ // track a checked-out version of the keybase secrets repo, say
27
+ // `/keybase/private/strib/.kbfs_autogit/team/keybase/secrets/.git/ `
28
28
//
29
29
// Any calls to update the index or set a reference will be routed to
30
30
// `wtDotgit`, and everything else goes to `storage.Storer`. That
0 commit comments