Skip to content

Commit b769f9b

Browse files
chore: auto-generate README.md from toc-source.json
1 parent a35318f commit b769f9b

6 files changed

+34
-0
lines changed

contents/git-command-reference-full-list.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
99
A comprehensive list of Git commands used in this project, formatted according to our standard.
1010

11+
## Key Topics & Subcommands
12+
- [git init --bare](./git-init-bare.md): Initialize a bare repository, typically used for remote repositories.
13+
- [git clone --mirror <repository>](./git-clone-mirror-repository.md): Clone a repository in mirror mode, including all refs and branches.
14+
1115

1216
---
1317

contents/how-to-use-git-worktree-safely.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88
99
`git worktree` allows you to manage multiple working directories linked to a single Git repository. It helps developers work on multiple branches simultaneously without switching branches in the same directory.
1010

11+
## Key Topics & Subcommands
12+
- [Check Existing Worktrees](./check-existing-worktrees.md)
13+
- [Create a New Worktree](./create-a-new-worktree.md)
14+
- [Remove a Worktree](./remove-a-worktree.md)
15+
- [Switch Between Worktrees](./switch-between-worktrees.md)
16+
- [Use Worktrees for Temporary Fixes](./use-worktrees-for-temporary-fixes.md)
17+
- [Flags and Their Uses](./flags-and-their-uses.md)
18+
1119

1220
---
1321

contents/miscellaneous-orphaned-git-commands.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
99
This file collects useful Git commands and scripts that were previously only in the README and not referenced elsewhere in this repository.
1010

11+
## Key Topics & Subcommands
12+
- [git maintenance start](./git-maintenance-start.md): Runs a cronJob in background for the specified repo for periodic maintenance.
13+
- [git request-pull](./git-request-pull.md): Generate a request to pull changes into a repository.
14+
- [View and Clean Up Local Git Branches (Bash)](./view-and-clean-up-local-git-branches-bash.md): Scripts to view and clean up local branches using Bash.
15+
- [View and Clean Up Local Git Branches (PowerShell)](./view-and-clean-up-local-git-branches-powershell.md): Scripts to view and clean up local branches using PowerShell.
16+
1117

1218
---
1319

contents/past-commits-of-a-specific-file.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
99
You can see all commits related to a specific file using Git commands. Here are a few ways to do it:
1010

11+
## Key Topics & Subcommands
12+
- [Show Commit History of a Specific File](./show-commit-history-of-a-specific-file.md)
13+
- [Show Detailed Commit History (With Changes)](./show-detailed-commit-history-with-changes.md)
14+
- [Show Commit History With Author and Date](./show-commit-history-with-author-and-date.md)
15+
- [See Who Last Modified Each Line (Blame)](./see-who-last-modified-each-line-blame.md)
16+
1117

1218
---
1319

contents/sharing-changes-as-patch-files.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88
99
How to create patch files from your changes for sharing via email, SCP, Slack, or other means. Covers both committed (with full commit metadata) and uncommitted changes.
1010

11+
## Key Topics & Subcommands
12+
- [Create Patch from Last Commit(s)](./create-patch-from-last-commit-s.md)
13+
- [Apply Patch with Commit Metadata](./apply-patch-with-commit-metadata.md)
14+
- [Create Patch from Uncommitted Changes](./create-patch-from-uncommitted-changes.md)
15+
- [Apply Diff File](./apply-diff-file.md)
16+
- [Patch vs Diff: Quick Reference](./patch-vs-diff-quick-reference.md)
17+
1118

1219
---
1320

contents/useful-rare-git-commands-you-never-heard-of.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
99
A collection of lesser-known but powerful Git commands. Use these to level up your Git workflow!
1010

11+
## Key Topics & Subcommands
12+
- [git replace <old-commit> <new-commit>](./git-replace-old-commit-new-commit.md): Temporarily substitute one commit for another.
13+
1114

1215
---
1316

0 commit comments

Comments
 (0)