How to know if there is a git rebase in progress?

后端 未结 7 484
说谎
说谎 2020-12-02 18:02

When I start a git rebase -i, I can issue commands like git rebase --continue, or git rebase --abort. Those commands only work if a re

相关标签:
7条回答
  • 2020-12-02 18:56

    I am using this command is_rebase=$(git status | grep "rebasing" | wc -l)

    0 讨论(0)
提交回复
热议问题