-
Want to preface this with a big thanks for creating this project! It's very slick and adds some much missed functionality back to git. One thing I've noticed is that when I run
Almost all of these updates are remote branches pushed by other contributors to the same repo. My questions:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
git-branchless prints these as part of the git-branchless used to work with remote branches, but it no longer does, so I guess we could ignore updates to remote branches. If you want to make that change, you'll have to do it in the There's currently no way to suppress the printing of the message itself. Fetching only the main branch is fine (that's what I usually do), with the obvious caveat that then you won't have immediate access to your colleagues' branches. You can fetch those branches on-demand later with |
Beta Was this translation helpful? Give feedback.
git-branchless prints these as part of the
reference-transaction
hook. Ideally, these branches would all be batched into the same transaction, so that only one (very long) line would be printed, but upstream Git hasn't implemented that.git-branchless used to work with remote branches, but it no longer does, so I guess we could ignore updates to remote branches. If you want to make that change, you'll have to do it in the
reference-transaction
hook:https://github.com/arxanas/git-branchless/blob/de7bf6911829f2e3a85bdbe04640e327fdedee98/git-branchless-hook/src/lib.rs#LL474C41-L474C41
There's currently no way to suppress the printing of the message itself.
Fetching only the main branch is f…