mirror of
https://github.com/mike-rambil/Advanced-Git.git
synced 2025-12-30 05:59:31 -06:00
chore: auto-generate README.md from toc-source.json
This commit is contained in:
@@ -6,6 +6,10 @@
|
||||

|
||||
> A comprehensive list of Git commands used in this project.
|
||||
|
||||
## 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.
|
||||
|
||||
A comprehensive list of Git commands used in this project, formatted according to our standard.
|
||||
|
||||
|
||||
|
||||
@@ -6,6 +6,14 @@
|
||||

|
||||
> Work on multiple branches simultaneously without switching.
|
||||
|
||||
## 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)
|
||||
|
||||
`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.
|
||||
|
||||
|
||||
|
||||
@@ -6,6 +6,12 @@
|
||||

|
||||
> Useful Git commands and scripts not referenced elsewhere.
|
||||
|
||||
## 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.
|
||||
|
||||
This file collects useful Git commands and scripts that were previously only in the README and not referenced elsewhere in this repository.
|
||||
|
||||
|
||||
|
||||
@@ -6,6 +6,12 @@
|
||||

|
||||
> See all commits and changes for a specific file.
|
||||
|
||||
## 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)
|
||||
|
||||
You can see all commits related to a specific file using Git commands. Here are a few ways to do it:
|
||||
|
||||
|
||||
|
||||
@@ -6,6 +6,13 @@
|
||||

|
||||
> Generate and share patch files for committed or uncommitted changes.
|
||||
|
||||
## 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)
|
||||
|
||||
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.
|
||||
|
||||
|
||||
|
||||
@@ -6,6 +6,9 @@
|
||||

|
||||
> A collection of lesser-known but powerful Git commands.
|
||||
|
||||
## Subcommands
|
||||
- [git replace <old-commit> <new-commit>](./git-replace-old-commit-new-commit.md): Temporarily substitute one commit for another.
|
||||
|
||||
A collection of lesser-known but powerful Git commands. Use these to level up your Git workflow!
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user