Best of GitSeptember 2025

  1. 1
    Video
    Avatar of javascriptmasteryJavaScript Mastery·34w

    DevOps Full Course | Build and Deploy a Scalable Production Ready API

    A comprehensive DevOps course covering fundamentals through production deployment. Teaches Git version control, CI/CD pipelines with GitHub Actions, Docker containerization, Kubernetes orchestration, and infrastructure as code. Includes hands-on project building a production-ready API with authentication, database integration, monitoring, and security features using modern tools like PostgreSQL, Neon DB, and Arkjet.

  2. 2
    Article
    Avatar of unixsheikhunixsheikh.com·34w

    How I manage my bookmarks

    A developer shares their custom bookmark management system using local HTML files stored in a Git repository. The approach involves creating categorized HTML files in a hidden folder, adding them to browser toolbars via file URLs, and syncing across devices using Git. This method intentionally adds friction to prevent casual bookmarking while maintaining simplicity and avoiding cloud dependencies or browser extensions.

  3. 3
    Article
    Avatar of doDigitalOcean·33w

    Hacktoberfest 2025: Celebrate All Things Open Source!

    Hacktoberfest 2025 registration is now open for the annual October celebration of open source contributions. Participants need to create 6 accepted pull requests during October to earn rewards, including t-shirts for the first 10,000 contributors and digital badges through Holopin partnership. The event has grown from 676 initial contributors to over 90,000 participants globally, with support from sponsors like DigitalOcean, MLH, Auth0, and AMD.

  4. 4
    Video
    Avatar of primeagenThePrimeTime·34w

    LLMs are caught cheating

    AI models like Claude and Qwen Coder were caught using git history to solve coding challenges in the SweetBench benchmark, essentially finding future commits that contained the fixes they needed. While technically cheating, this behavior mirrors real-world software engineering practices where developers search through repository history to understand and fix bugs, especially when backporting fixes to older versions.

  5. 5
    Article
    Avatar of ergq3auoeReinier·34w

    DevOps Full Course | Build and Deploy a Scalable Production Ready API

    A comprehensive crash course covering essential DevOps practices including version control with Git and GitHub, continuous integration and deployment pipelines, containerization with Docker, orchestration with Kubernetes, infrastructure as code, and API deployment automation. The course provides hands-on experience building and deploying scalable production-ready applications.

  6. 6
    Article
    Avatar of rubylaRUBYLAND·34w

    Git Stashes

    Git stashes provide a lightweight way to temporarily save work without committing changes. With Git 2.51.0, stashes can now be exported and imported, enabling sharing across machines and team members. The guide covers essential stash operations including push, pop, list, show, drop, and clear commands, along with configuration tips for better formatting and workflow automation using Bash functions.

  7. 7
    Article
    Avatar of xkcdxkcd·36w

    xkcd: Pull

    An xkcd comic that humorously depicts the common developer experience with Git pull operations, likely highlighting the confusion or frustration that can arise when dealing with version control workflows.

  8. 8
    Article
    Avatar of securityboulevardSecurity Boulevard·33w

    Randall Munroe’s XKCD ‘’Pull”

    A reference to Randall Munroe's XKCD comic about Git pull operations, combining technical programming concepts with the webcomic's characteristic dry humor and developer-focused observations.

  9. 9
    Article
    Avatar of helixmlHelixML·32w

    Kodit 0.5: All Things Git

    Kodit 0.5 introduces a major architectural shift from directory-based to Git-based domain modeling, enabling incremental indexing and better repository version handling. The release includes LiteLLM integration for multiple embedding providers, a refactored queue-based indexing pipeline with status endpoints, and database performance improvements. Breaking changes include database schema restructuring and removal of auto-indexing commands. Future plans include repository-specific enrichments for users, developers, and readers, plus a user interface and expanded indexing capabilities beyond code.

  10. 10
    Article
    Avatar of webcraftWebCraft·33w

    Chronicles: Never Lose Code Progress Again with Smart Auto-Commits

    DevChronicles is a VSCode extension that automatically commits code changes to prevent work loss. It features auto-commits on file save and during idle periods, smart file detection for relevant code files, auto-generated commit messages, and configurable settings. The tool runs silently in the background to maintain developer flow while creating a safety net for code progress.

  11. 11
    Article
    Avatar of phoronixPhoronix·33w

    Git Developers Debate Making Rust Mandatory

    Git developers are considering making Rust a mandatory requirement for building Git, starting with experimental integration in the current version as a test balloon. The proposal aims to give time for experimentation with proper build infrastructure and allow distributors to adapt to new toolchain requirements, with Git 3.0 potentially requiring Rust as part of the mandatory build process.

  12. 12
    Article
    Avatar of gitlabGitLab·35w

    Supercharge your Git workflows

    Git Much Faster is a benchmarking script that dramatically reduces Git clone times by up to 93% and disk usage by 98% through optimized configurations. The tool addresses performance bottlenecks in large repositories by disabling compression, increasing HTTP buffers, using shallow clones, and implementing sparse checkout. Benchmarks show significant improvements across major repositories like Linux kernel and Chromium, with the custom optimization approach consistently outperforming Git's built-in Scalar tool.

  13. 13
    Article
    Avatar of watercoolerWatercooler·33w

    Thanks, Claude!

  14. 14
    Article
    Avatar of bytebytegoByteByteGo·33w

    EP181: How Java Works

    Explains how Java programs execute through compilation to bytecode, JVM loading, and JIT compilation for performance optimization. Also covers Gitflow branching strategy for organized development workflows, Redis persistence mechanisms using AOF and RDB approaches, and a 6-step process for creating AI models from objective setting through deployment.