steveukx/git-js

Missing Rebase/Cherry picking state information in git status result

Opened this issue · 0 comments

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.