You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using simple-git version: 3.10.0 .
Command:
const status = await simpleGit(options).status();
In the status result I don't find any information to check if the there is any rebase and cherry pick task is in progress or not.
While reabase is in progress the git status command show below line in git bash:
"interactive rebase in progress; onto [hash]"
And similarly something while running cherry pick.
Expectation:
I am expecting two boolean properties such as "rebasing" for rebase and "cherryPicking" for cherry pick state in status result object.
The text was updated successfully, but these errors were encountered:
Thanks all for the great project.
I am using simple-git version: 3.10.0 .
Command:
const status = await simpleGit(options).status();
In the status result I don't find any information to check if the there is any rebase and cherry pick task is in progress or not.
While reabase is in progress the git status command show below line in git bash:
"interactive rebase in progress; onto [hash]"
And similarly something while running cherry pick.
Expectation:
I am expecting two boolean properties such as "rebasing" for rebase and "cherryPicking" for cherry pick state in status result object.
The text was updated successfully, but these errors were encountered: