Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
get_config_settings: Avoid break with multiline configs
If a user has a multiline config like: ``` git config test.test = "Hello world" ``` git-filter-repo breaks: ``` > return dict(line.split(b'=', maxsplit=1) for line in output.strip().split(b"\n")) E ValueError: dictionary update sequence element #12 has length 1; 2 is required ``` Multiline configs are required by b4 in branch-description strategy: https://b4.docs.kernel.org/en/latest/contributor/prep.html#prep-cover-strategies Signed-off-by: Ricardo Ribalda <[email protected]>
- Loading branch information