Tools

Kostenlose GitHub-Pages-Tools

Tools für Custom Domains, statisches Publishing, Launch-Checks und GitHub-Pages-Wartung.

Verfügbare Tools

GitHub-Pages-Tools, die du sofort nutzen kannst

Wobei diese Sammlung hilft

GitHub Pages ist einfach, aber Domain- und Publishing-Regeln sind streng. Eine CNAME-Datei im falschen Ordner oder ein fehlender Build-Output kann aus einer guten Seite eine 404 machen.

Geeignet fur

  • Custom Domains für GitHub Pages vorbereiten.
  • Statischen Output vor dem Push prüfen.
  • CNAME, Sitemap, robots.txt und generierte Dateien im Output halten.

Typische Anwendungsfalle

  • Gultigen CNAME-Inhalt erzeugen.
  • DNS-Hinweise von Repository-Einstellungen trennen.
  • Launch-Details vor HTTPS und Freigabe prüfen.

Task guide

Use GitHub Pages tools when you set up a new site, move an existing site to a custom domain, or troubleshoot a deployment that is not serving correctly. Start by confirming your site repository settings: the publishing source branch and folder. Use the CNAME helper to prepare a custom domain file and verify your DNS configuration before enabling HTTPS. Add a 404 HTML page for single-page applications that handle client-side routing. Finish with the SEO checklist to verify that your generated output includes essential files like robots.txt, sitemap.xml, and proper metadata.

Publishing checklist

  • Confirm the CNAME file exists in the root of your published output, not your project source root, and matches your custom domain exactly.
  • Verify that the GitHub Pages publishing source setting points to the correct branch and folder, such as main /root or gh-pages /docs.
  • Check DNS records for your custom domain: a CNAME record for www and either ALIAS or A records for the apex domain.
  • Test the site URL after HTTPS is provisioned, as GitHub Pages can take several minutes to issue a certificate.
  • Enable HTTPS enforcement only after confirming the site loads correctly over both HTTP and HTTPS.

FAQ

Fragen zu github-pages-tools

Wo muss die CNAME-Datei liegen?

Im veröffentlichten Site-Root. Wenn ein dist-Ordner veröffentlicht wird, muss sie dort liegen.

Warum zeigt GitHub Pages trotz Push 404?

Haufige Ursachen sind falscher Branch, falscher Ordner, fehlende index.html oder eine Domain am falschen Repository.