We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
repo.branches was not seeing some of my newly-created branches. I tracked it down to https://github.com/gitpython-developers/GitPython/blob/master/git/refs/symbolic.py#L577
if 'refs/' not in root: # skip non-refs subfolders
This needs to honor os.sep, eg:
if 'refs' not in root.split(os.sep): # skip non-refs subfolders
The text was updated successfully, but these errors were encountered:
416daa0
Thanks a lot for letting us know, and for suggesting a viable fix!
Sorry, something went wrong.
In order to support also CYGWIN Git, maybe it needs to check posix os.sep :-(
Is tm possible to have a simple TestCase to reproduce it in Appveyor?
No branches or pull requests
repo.branches was not seeing some of my newly-created branches. I tracked it down to https://github.com/gitpython-developers/GitPython/blob/master/git/refs/symbolic.py#L577
This needs to honor os.sep, eg:
The text was updated successfully, but these errors were encountered: