Skip to content

Commit 0904501

Browse files
committed
cmd/git(fix[Git.rebase]): Fix --no-rerere-autoupdate typo
why: The flag was misspelled as --no-rerwre-autoupdate which would cause git to fail with "unknown option". what: - Fix typo: rerwre -> rerere
1 parent 47e6819 commit 0904501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libvcs/cmd/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ def rebase(
720720
if rerere_autoupdate:
721721
local_flags.append("--rerere-autoupdate")
722722
if no_rerere_autoupdate:
723-
local_flags.append("--no-rerwre-autoupdate")
723+
local_flags.append("--no-rerere-autoupdate")
724724

725725
if reapply_cherry_picks:
726726
local_flags.append("--reapply-cherry-picks")

0 commit comments

Comments
 (0)