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
cmd/git(fix[rev_list]) Reference _all parameter instead of builtin all
why: The flag processing loop used bare `all` (Python builtin, always
truthy) instead of the `_all` parameter, causing --all to be appended
unconditionally twice to every rev-list command.
what:
- Change (all, "--all") to (_all, "--all") at both occurrences
- Add test_rev_list_all_parameter to verify _all flag behavior
0 commit comments