chore: auto-generate README.md from toc-source.json

This commit is contained in:
github-actions[bot]
2025-07-11 01:57:39 +00:00
parent a35318f479
commit b769f9b2ad
6 changed files with 34 additions and 0 deletions

View File

@@ -8,6 +8,10 @@
A comprehensive list of Git commands used in this project, formatted according to our standard.
## Key Topics & Subcommands
- [git init --bare](./git-init-bare.md): Initialize a bare repository, typically used for remote repositories.
- [git clone --mirror <repository>](./git-clone-mirror-repository.md): Clone a repository in mirror mode, including all refs and branches.
---

View File

@@ -8,6 +8,14 @@
`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.
## Key Topics & Subcommands
- [Check Existing Worktrees](./check-existing-worktrees.md)
- [Create a New Worktree](./create-a-new-worktree.md)
- [Remove a Worktree](./remove-a-worktree.md)
- [Switch Between Worktrees](./switch-between-worktrees.md)
- [Use Worktrees for Temporary Fixes](./use-worktrees-for-temporary-fixes.md)
- [Flags and Their Uses](./flags-and-their-uses.md)
---

View File

@@ -8,6 +8,12 @@
This file collects useful Git commands and scripts that were previously only in the README and not referenced elsewhere in this repository.
## Key Topics & Subcommands
- [git maintenance start](./git-maintenance-start.md): Runs a cronJob in background for the specified repo for periodic maintenance.
- [git request-pull](./git-request-pull.md): Generate a request to pull changes into a repository.
- [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.
- [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.
---

View File

@@ -8,6 +8,12 @@
You can see all commits related to a specific file using Git commands. Here are a few ways to do it:
## Key Topics & Subcommands
- [Show Commit History of a Specific File](./show-commit-history-of-a-specific-file.md)
- [Show Detailed Commit History (With Changes)](./show-detailed-commit-history-with-changes.md)
- [Show Commit History With Author and Date](./show-commit-history-with-author-and-date.md)
- [See Who Last Modified Each Line (Blame)](./see-who-last-modified-each-line-blame.md)
---

View File

@@ -8,6 +8,13 @@
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.
## Key Topics & Subcommands
- [Create Patch from Last Commit(s)](./create-patch-from-last-commit-s.md)
- [Apply Patch with Commit Metadata](./apply-patch-with-commit-metadata.md)
- [Create Patch from Uncommitted Changes](./create-patch-from-uncommitted-changes.md)
- [Apply Diff File](./apply-diff-file.md)
- [Patch vs Diff: Quick Reference](./patch-vs-diff-quick-reference.md)
---

View File

@@ -8,6 +8,9 @@
A collection of lesser-known but powerful Git commands. Use these to level up your Git workflow!
## Key Topics & Subcommands
- [git replace <old-commit> <new-commit>](./git-replace-old-commit-new-commit.md): Temporarily substitute one commit for another.
---