Thanks to visit codestin.com
Credit goes to github.com

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: gitpython-developers/GitPython
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: orls/GitPython
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.3
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 4 commits
  • 2 files changed
  • 1 contributor

Commits on May 9, 2014

  1. When fetching, treat anything that's not a tag as a generic RemoteRef…

    …erence -- don't sniff for branch specifically.
    
    Otherwise it's impossible to fetch certain kinds of non-standard remote refs, like github's special pull request refs.
    Owen Smith committed May 9, 2014
    Configuration menu
    Copy the full SHA
    1469214 View commit details
    Browse the repository at this point in the history
  2. Give Popen a silly buffer size, or you only get the first 2^16 bytes

    Without this, some commands with large output fail horrible. For example, fetching remotes that have a large ref list: it fetches fine, but then the parsing for FetchInfo dies because the (trimmed) stderr list isn't as long as the list from FETCH_HEAD.
    
    I couldn't find a generic way to make this unbounded (temporary files, for example) without rewriting *everywhere* that stdout/stderr is read. Which is...a lot of places.
    Owen Smith committed May 9, 2014
    Configuration menu
    Copy the full SHA
    e393f85 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'fix/fetch-any-ref' into 0.3

    Owen Smith committed May 9, 2014
    Configuration menu
    Copy the full SHA
    21eda4f View commit details
    Browse the repository at this point in the history
  4. Merge branch 'fix/popen-buffer' into 0.3

    Owen Smith committed May 9, 2014
    Configuration menu
    Copy the full SHA
    22a5929 View commit details
    Browse the repository at this point in the history
Loading