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

Commits on Mar 8, 2017

  1. Add option to skip the GC cycle on Repo close

    In large environment with thousands of repos and frequent repo opens and
    closes, the cost of doing 2 full gc cycles on every Repo destruction can
    become crippling.
    emonty committed Mar 8, 2017
    Configuration menu
    Copy the full SHA
    60ca325 View commit details
    Browse the repository at this point in the history
  2. Perform the first gc.collect before clearing cache

    In issue #553 it was originally mentioned that the gc.collect was
    required before clearing the cache, but in the code the collect happens
    after the cache clear. Move the first gc.collect to before the cache to
    be consistent with the original description.
    emonty committed Mar 8, 2017
    Configuration menu
    Copy the full SHA
    0533dd6 View commit details
    Browse the repository at this point in the history
Loading