Skip to content

Commit 1b18d7a

Browse files
committed
cmd/git(fix[Git.pull]): Fix --signoff flag spelling
why: The flags were spelled with underscore (--sign_off, --no-sign_off) but git expects hyphen format (--signoff, --no-signoff). what: - Change --sign_off to --signoff - Change --no-sign_off to --no-signoff
1 parent 0904501 commit 1b18d7a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/libvcs/cmd/git.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -947,9 +947,9 @@ def pull(
947947
if no_edit:
948948
local_flags.append("--no-edit")
949949
if sign_off:
950-
local_flags.append("--sign_off")
950+
local_flags.append("--signoff")
951951
if no_sign_off:
952-
local_flags.append("--no-sign_off")
952+
local_flags.append("--no-signoff")
953953
if stat:
954954
local_flags.append("--stat")
955955
if no_stat:

0 commit comments

Comments
 (0)