Re: [PATCH v2 0/5] builtin-status submodule summary
From: Johannes Sixt <hidden>
Date: 2016-06-15 22:44:23
Ping Yin schrieb:
IMO, git submodule summary is not so useful for me if it's not integrated into git-status. In fact i never use "git submodule summary" directly. git-status with submodule summary support is very useful to help user figure out what is going on in a more global level when cooking the commit message. So i think this series should go along with the submodule summary series.
I think so, too. The changes and defaults in wt-status.c are trivial enough that they don't penalize traditional git-status users.
The v2 series has following commits adding a new commit for documentation
1 git-submodule summary: --for-status option
2 builtin-status: submodule summary support
3 builtin-status: configurable submodule summary size
4 buitin-status: Add tests for submodule summary
5 git-status: Mention status.submodulesummary config in the documentationI'd actually squash 2, 3, and 5. You still have the statement before a declaration in 3/5.
+ if (! wt_status_submodule_summary) return;
And here the important part (IMO) is actually that 'return' should go on a line of its own. -- Hannes