Re: [git-users] Re: Would like to generate logs just like in the official documentation from a real git repo

2022-10-18 Thread A A
The labelling is not my issue here. I can manually tag the commits and then log by tag as I've done in my original post. The issue is forcing the output of git log to align horizontally rather than vertically On Tue, 18 Oct 2022, 18:33 Philip Oakley, wrote: > I'd been looking at the `log` man p

[git-users] Re: Would like to generate logs just like in the official documentation from a real git repo

2022-10-18 Thread Philip Oakley
I'd been looking at the `log` man page, rather than the rebase man page! A the moment it's not possible. It might become possible if (big if): 1. there was a way of labelling all commits with single letter labels, and limiting the size to

[git-users] Re: git gc error with git 2.37.2?

2022-10-18 Thread Mathias Rav
On Monday, October 17, 2022 at 8:27:44 PM UTC+2 Paul wrote: > Based on the above, I contacted the git list, and got a response from Jeff: > > It sounds like there's a resolve-undo extension in your index > that references that blob, but the blob was removed from the > repository (probably by a g

[git-users] Re: Would like to generate logs just like in the official documentation from a real git repo

2022-10-18 Thread A A
I've pasted the example I would like to output from `git log` in my original post. If you say that is hand-crafted then that basically leaves me with no choice but to either hand craft things myself as well or accept the output of ` git log --graph --format="%(describe:tags=true)" --all` howeve

Re: [git-users] git should not allow commit while in middle of rebase

2022-10-18 Thread Sameer Mahajan
Interesting perspectives. Thanks for sharing your inputs. I can definitely see the need now. I guess some kind of additional check (e.g. even git branch for that matter) before commit from my side would definitely help / protect me. On Tuesday, October 18, 2022 at 5:32:17 PM UTC+5:30 Konstantin

Re: [git-users] git should not allow commit while in middle of rebase

2022-10-18 Thread Konstantin Khomoutov
On Tue, Oct 18, 2022 at 03:44:48AM -0700, Sameer Mahajan wrote: > git should not allow commit while in middle of rebase but allow only rebase > --continue until all conflicts are resolved. > > are there any use cases where someone may want to commit in middle of > rebase before rebase --continu

[git-users] Re: git should not allow commit while in middle of rebase

2022-10-18 Thread Philip Oakley
I use it often to split a complex commit into independent parts, maybe even make one of those parts be a `fixup! ` commit. If purposeful (first case) then you are already interactive and it feels sensible. If it was an 'automatic' rebase (non-interactive until conflict) then you may find you s

[git-users] git should not allow commit while in middle of rebase

2022-10-18 Thread Sameer Mahajan
Hello, git should not allow commit while in middle of rebase but allow only rebase --continue until all conflicts are resolved. are there any use cases where someone may want to commit in middle of rebase before rebase --continue? I know I shouldn't have done it but it has been a means of ago