{isGerman ? "Gitty Hilfe" : "Gitty Help"}

{isGerman ? "App-Anleitung und Git-Wissen an einem Ort" : "App guidance and Git knowledge in one place"}

{isGerman ? "Themen" : "Topics"}

{#each categories as category} {/each}
{isGerman ? "Suche auch nach Befehlen wie" : "Try commands such as"} rebase, lfs {isGerman ? "oder" : "or"} reflog.
{#if normalizedQuery}
{isGerman ? "Suchergebnisse" : "Search results"}

{resultCount} {isGerman ? "Treffer für" : resultCount === 1 ? "result for" : "results for"} „{searchQuery.trim()}“

{/if} {#if visibleGroups.length === 0}

{isGerman ? "Kein Hilfethema gefunden" : "No help topic found"}

{isGerman ? "Versuche einen allgemeineren Begriff wie „Commit“, „Branch“, „Remote“ oder „Konflikt“." : "Try a broader term such as “commit”, “branch”, “remote”, or “conflict”."}

{:else} {#each visibleGroups as group}
{normalizedQuery ? group.category.label : isGerman ? "Gitty Handbuch" : "Gitty handbook"}

{normalizedQuery ? group.category.label : group.category.label}

{group.category.description}

{#each group.sections as section, sectionIndex}
{String(sectionIndex + 1).padStart(2, "0")}

{section.title}

{section.summary}

{#if section.steps}
    {#each section.steps as step}
  1. {step}
  2. {/each}
{/if} {#if section.commands}
{#each section.commands as entry}
{entry.command} {entry.description}
{/each}
{/if} {#if section.note}
{#if isWarningNote(section.note)} {:else} {/if} {section.note}
{/if}
{/each}
{/each} {/if}
Ctrl/ {isGerman ? "Hilfe öffnen" : "open help"} Esc {isGerman ? "schließen" : "close"}