There is no easier way to do that, as GitPython provides mostly low level commands.
\nI presume you will have to parse the output of the git command execution yourself.
\nAs for the line splitting:
>>> \"hi\\nho\".split(\"\\n\")\n['hi', 'ho']\n
-
Documentation is throwing me off a little bit, can somebody please help in how we can perform the operation similar to the command: Tried the below but it didn't work for list, but worked for drop and save.
|
Beta Was this translation helpful? Give feedback.
-
The issue is resolved, Getting stash list as string Is there a list of strs that can be provided back? |
Beta Was this translation helpful? Give feedback.
-
There is no easier way to do that, as GitPython provides mostly low level commands.
|
Beta Was this translation helpful? Give feedback.
There is no easier way to do that, as GitPython provides mostly low level commands.
I presume you will have to parse the output of the git command execution yourself.
As for the line splitting: