How to use lazygit
to get the "branch-merged-into-main" curly line representation as that shown on gitgraph
in vscode
?
#2752
-
Beta Was this translation helpful? Give feedback.
Answered by
stefanhaller
Jul 1, 2023
Replies: 1 comment 3 replies
-
It looks like gitgraph is including the If you don't want to set it globally for all git clients, you can instead configure it for lazygit only by putting
into your lazygit config file; see https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
hopezh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It looks like gitgraph is including the
--no-ff
option in its merge command, and lazygit doesn't. I like lazygit's approach better, because users who want this behavior can configure it on the git level by sayinggit config --global merge.ff false
.If you don't want to set it globally for all git clients, you can instead configure it for lazygit only by putting
into your lazygit config file; see https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default.