Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: MacroscopeBenchmark/GitPython
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: gitpython-developers/GitPython
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 9, 2026

  1. Fix GitConfigParser ignoring multiple [include] path entries

    When an [include] section has multiple entries with the same key (e.g.
    multiple 'path' values), only the last one was respected. This is because
    _included_paths() used self.items(section) which delegates to _OMD.items(),
    and _OMD.__getitem__ returns only the last value for a given key.
    
    Fix by using _OMD.items_all() to retrieve all values for each key in the
    include/includeIf sections, ensuring all paths are processed.
    
    Fixes gitpython-developers#2099
    daniel7an committed Feb 9, 2026
    Configuration menu
    Copy the full SHA
    1a74bce View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2026

  1. Merge pull request gitpython-developers#2100 from daniel7an/fix-issue…

    …-2099-multiple-includes
    
    Fix GitConfigParser ignoring multiple [include] path entries
    Byron authored Feb 14, 2026
    Configuration menu
    Copy the full SHA
    22e0b52 View commit details
    Browse the repository at this point in the history
Loading