Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chapters/recipes/commit-msg-hook.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ $ chmod +x .git/hooks/commit-msg

### Sharing and bypassing

Same as other hooks — see the [Hooks](hooks.md) recipe for
Same as other hooks — see the [Hooks](../hooks/) recipe for
`core.hooksPath` and `--no-verify`.
2 changes: 1 addition & 1 deletion chapters/recipes/debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ order: 80

### Find which commit introduced a bug

Use [Git Bisect](git-bisect.md) for a full walkthrough of manual and
Use [Git Bisect](../git-bisect/) for a full walkthrough of manual and
automated binary search through commit history.

### See who last changed each line
Expand Down
2 changes: 1 addition & 1 deletion chapters/recipes/git-bisect.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ commit when done.
- Use `git bisect log` to replay or share a bisect session.

For blame, log search, and other debugging tools, see the
[Debugging](debugging.md) recipe.
[Debugging](../debugging/) recipe.
4 changes: 2 additions & 2 deletions chapters/recipes/hooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ order: 83

### Create a pre-commit hook

See [Pre-commit Hook](pre-commit-hook.md) for a full walkthrough —
See [Pre-commit Hook](../pre-commit-hook/) for a full walkthrough —
script creation, common checks, and sharing with the team.

### Create a commit-msg hook

See [Commit-msg Hook](commit-msg-hook.md) for a full walkthrough —
See [Commit-msg Hook](../commit-msg-hook/) for a full walkthrough —
message validation, Conventional Commits enforcement, and examples.

### Share hooks with the team
Expand Down
2 changes: 1 addition & 1 deletion chapters/recipes/pre-commit-hook.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $ chmod +x .git/hooks/pre-commit
### Sharing pre-commit hooks

Hooks in `.git/hooks/` are local and not committed. To share them
with the team, see the [Hooks](hooks.md) recipe for the
with the team, see the [Hooks](../hooks/) recipe for the
`core.hooksPath` approach.

### Bypassing
Expand Down
2 changes: 1 addition & 1 deletion chapters/recipes/remote-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ $ git remote set-url origin git@github.com:<user>/<repo>.git

### Set up SSH authentication

See [SSH Setup](ssh-setup.md) for a full walkthrough — key
See [SSH Setup](../ssh-setup/) for a full walkthrough — key
generation, agent configuration, GitHub registration, and
troubleshooting.
2 changes: 1 addition & 1 deletion chapters/recipes/remove-submodule.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ $ git commit -m "Remove submodule"
- **Nested submodules** — if the submodule itself contains submodules,
you need to deinit recursively or clean up `.git/modules/` manually.

For other submodule operations, see the [Submodules](submodules.md)
For other submodule operations, see the [Submodules](../submodules/)
recipe.
2 changes: 1 addition & 1 deletion chapters/recipes/submodules.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ $ git commit -m "Update submodule"

### Remove a submodule

See [Remove a Submodule](remove-submodule.md) for a full
See [Remove a Submodule](../remove-submodule/) for a full
walkthrough — the three cleanup steps, what each does, and common
gotchas.
Loading