The right side of the git command line shows (dev | REBASE 1 take 5). Instead of showing the name of the current branch, how can I get him to display the name of the current branch?

Git
Mar.04,2021

this is because you have executed rebase. Rebase-- continue continues the rebase process. Dev | REBASE 1: 5 indicates that the dev branch has four commits waiting to be processed, rebase-- abort will launch the rebase process, and rebase-- skip will skip the submission of your specified branch

.
Menu