Skip to content

Commit 01efc2d

Browse files
committed
fix(cmd[git]) For remote commands
1 parent 4c0ce04 commit 01efc2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libvcs/cmd/git.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2481,7 +2481,7 @@ def rename(
24812481
local_flags.append("--no-progress")
24822482
return self.run(
24832483
"rename",
2484-
local_flags=local_flags + ["--"] + required_flags,
2484+
local_flags=local_flags + required_flags,
24852485
check_returncode=check_returncode,
24862486
log_in_real_time=log_in_real_time,
24872487
)
@@ -2508,7 +2508,7 @@ def remove(
25082508

25092509
return self.run(
25102510
"remove",
2511-
local_flags=local_flags + ["--"] + required_flags,
2511+
local_flags=local_flags + required_flags,
25122512
check_returncode=check_returncode,
25132513
log_in_real_time=log_in_real_time,
25142514
)

0 commit comments

Comments
 (0)