How can I see how many lanes I have left?

How can I see how much work remains when reinstalling during its execution?

those. I want to see how much git work is left.

+5
source share
2 answers

If you use git-prompt.sh , your invitation will show something like |REBASE-i (x/y) when resolving a conflict during an interactive redirect, where x is the step from y where the conflict arose.

+2
source

You are probably looking for this information for normal rebase instead of interactive rebase.

This information is not displayed for non-interactive reinstallations. However, you can find it by looking at the redirects .

This directory has all the necessary information. In particular, if you are working with the default .git directory, you can find it by running these commands

 cat .git/rebase-apply/next cat .git/rebase-apply/last 

If you want to know the commit that is currently being applied, you can use the following

 cat .git/rebase-apply/original-commit 

And if you want to see the actual fixes that apply, you can see the numbered files in .git / rebase-apply

+2
source

Source: https://habr.com/ru/post/1233279/


All Articles