-
-
Notifications
You must be signed in to change notification settings - Fork 932
New issue
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
Error in repo.active_branch
if branch is in DETACHED HEAD state
#633
Comments
Looks similar to #629 |
I am not sure it would be right to return a commit instead. The function is called |
Hm good point, I don´t have a pefect answer.. To return no branch seems to be ok. |
I think returning no branch would break existing code which expects an exception. On the other hand, the exception is not documented, so in a way it's running under the radar anyway. Maybe it could be adjusted to return None if there is no active branch instead, which would make the calling code a little less cumbersome and safer, as it could start to expect that. Would you like to contribute a respective PR? |
I stumbled on this too. With submodules. |
When concourse checks out a repo it leaves it in a detached head state. This was causing errors as python git has slightly undefined behaviour in this case. ``` File "detect_checker.py", line 125, in _load_repo self.parent_branch = self.repo.active_branch File "/home/a/venv/local/lib/python3.7/site-packages/git/repo/base.py", line 703, in active_branch return self.head.reference File "/home/a/venv/local/lib/python3.7/site-packages/git/refs/symbolic.py", line 272, in _get_reference raise TypeError("%s is a detached symbolic reference as it points to %r" % (self, sha)) TypeError: HEAD is a detached symbolic reference as it points to '6e589de2864ee310a46a343ae9d656405e6b8c84' ``` gitpython-developers/GitPython#633 This PR changes it use the hexsha instead which works correctly with detached heads and normal branches. Co-authored-by: detnon <sam.detnon@digital.cabinet-office.gov.uk> Co-authored-by: Alex Kinnane <17098249+akinnane@users.noreply.github.com>
When concourse checks out a repo it leaves it in a detached head state. This was causing errors as python git has slightly undefined behaviour in this case. ``` File "detect_checker.py", line 125, in _load_repo self.parent_branch = self.repo.active_branch File "/home/a/venv/local/lib/python3.7/site-packages/git/repo/base.py", line 703, in active_branch return self.head.reference File "/home/a/venv/local/lib/python3.7/site-packages/git/refs/symbolic.py", line 272, in _get_reference raise TypeError("%s is a detached symbolic reference as it points to %r" % (self, sha)) TypeError: HEAD is a detached symbolic reference as it points to '6e589de2864ee310a46a343ae9d656405e6b8c84' ``` gitpython-developers/GitPython#633 This PR changes it use the hexsha instead which works correctly with detached heads and normal branches. Co-authored-by: detnon <sam.detnon@digital.cabinet-office.gov.uk> Co-authored-by: Alex Kinnane <17098249+akinnane@users.noreply.github.com>
3 years later and this is still a problem :( |
It looks like gitpython is broken when one tries to use it from `git checkout hash`, see: gitpython-developers/GitPython#633 While debugging/bisecting we need to be able to step through different commits and for the code to still work. Currently it fails with: ``` ERR: File "./examples/seq2seq/distillation.py", line 504, in <module> ERR: distill_main(args) ERR: File "./examples/seq2seq/distillation.py", line 494, in distill_main ERR: model = create_module(args) ERR: File "./examples/seq2seq/distillation.py", line 411, in create_module ERR: model = module_cls(args) ERR: File "/mnt/nvme1/code/huggingface/transformers-multigpu/examples/seq2seq/finetune.py", line 58, in __init__ ERR: save_git_info(self.hparams.output_dir) ERR: File "/mnt/nvme1/code/huggingface/transformers-multigpu/examples/seq2seq/utils.py", line 355, in save_git_info ERR: repo_infos = get_git_info() ERR: File "/mnt/nvme1/code/huggingface/transformers-multigpu/examples/seq2seq/utils.py", line 374, in get_git_info ERR: "repo_branch": str(repo.active_branch), ERR: File "/home/stas/anaconda3/envs/main-38/lib/python3.8/site-packages/git/repo/base.py", line 705, in active_branch ERR: return self.head.reference ERR: File "/home/stas/anaconda3/envs/main-38/lib/python3.8/site-packages/git/refs/symbolic.py", line 272, in _get_reference ERR: raise TypeError("%s is a detached symbolic reference as it points to %r" % (self, sha)) ERR: TypeError: HEAD is a detached symbolic reference as it points to 'fb94b8f1e16eb21d166174f52e3e49e669ef0ac4' ``` This PR provides a workaround. @sshleifer
I believe this comment still holds. |
Thank you for this follow up, @Byron My suggestion for the best solution would be this: In order to keep backward compatibility (exception that is) adding a new argument that allows for what OP suggested:
and then:
I haven't looked at the code, so this is totally a pseudocode based on what I saw in this issue. Of course, if that suggestion resonates, you'd know better what to call it, Thank you. |
I think at this point it's clear that the methods behaviour is surprising, so having alternatives seems valuable. Thanks @stas00 for the suggestion, which certainly works as to remove the exception that keeps tripping people up. My proposition is to add a new method or property along the lines of |
Surely at the very least Thank you for your thoughtful commentary, @Byron. |
Indeed, ideally there is a way to not enforce any branching, but I don't believe that exists since there either is a branch, or there is none. With a method name that makes this clear there should be no surprise, but I invite you to experiment with styles and names and submit a PR with what works best for you. It really would be great if you could be the one to put an end to this issue :), so imagine me cheering you on from the sidelines :). |
Thank you for this invitation, but I will pass at the moment. I have never used Should I start using the library and get to learn how it works, I'd be happy to submit a PR. |
3.5 years later and this is still a problem :( |
This comment might help. |
Workaround for gitpython-developers/GitPython#633
Workaround for gitpython-developers/GitPython#633 (cherry picked from commit 0409411) # Conflicts: # frappe/commands/utils.py
I read the last comment, but it was 4 years ago, any new update on this? |
Soon this issue is 8 years old! With typing it would make sense to return |
Error in
repo.active_branch
if branch is inDETACHED HEAD
state:The branch is
None
indef _get_ref_info(cls, repo, ref_path):
because ofdef active_branch(self)
could returnHEAD-{commit-hash}
instead like:The text was updated successfully, but these errors were encountered: