You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fails with error message "--config is not allowed, use allow_unsafe_options=True to allow it."
The message was added by the 24 december 2022 commit of https://github.com/gitpython-developers/GitPython/commits/main/git/cmd.py when a check for unsafe options was introduced. No changes have been made to the methods of the config_writer to compensate for the check for unsafe options, so presumably they all will fail (at least the set_value method does).
The text was updated successfully, but these errors were encountered:
Since a recent update of GitPython execution of the method:
<repo>.config_writer().set_value("core", "longpaths", "true").release()
fails with error message "--config is not allowed, use allow_unsafe_options=True to allow it."
The message was added by the 24 december 2022 commit of https://github.com/gitpython-developers/GitPython/commits/main/git/cmd.py when a check for unsafe options was introduced. No changes have been made to the methods of the config_writer to compensate for the check for unsafe options, so presumably they all will fail (at least the set_value method does).
The text was updated successfully, but these errors were encountered: