Skip to content

git.execute('commit -m "word1 word2') fails #1379

Answered by Byron
jcralbino asked this question in Q&A
Discussion options

You must be logged in to vote

Despite the name, execute() (instead of _execute() is a low-level method that shouldn't be used.

Turn…

  • repo.git.execute(f"git add {origin}*") into repo.git.add(f"{origin}*")
  • repo.git.execute(f"git commit -m 'word1 word2'") into repo.git.commit(m='word1 word2')

…and things should work as expected.

More about how to call git directly is in the docs.

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@jcralbino
Comment options

Answer selected by jcralbino
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants