All of lore.kernel.org
 help / color / mirror / Atom feed
* [Patch] Nice help Output - SmallProjectIdea[1]
@ 2015-05-01 18:33 Alangi Derick
  2015-05-01 19:11 ` Thomas Gummerer
  0 siblings, 1 reply; 4+ messages in thread
From: Alangi Derick @ 2015-05-01 18:33 UTC (permalink / raw)
  To: git

This is a patch to fix the problem as given in the site:
https://git.wiki.kernel.org/index.php/SmallProjectsIdeas

diff --git a/help.c b/help.c
index 2072a87..e347bbc 100644
--- a/help.c
+++ b/help.c
@@ -229,9 +229,18 @@ void list_common_cmds_help(void)

  puts(_("The most commonly used git commands are:"));
  for (i = 0; i < ARRAY_SIZE(common_cmds); i++) {
- printf("   %s   ", common_cmds[i].name);
- mput_char(' ', longest - strlen(common_cmds[i].name));
- puts(_(common_cmds[i].help));
+ if(i%3 == 1){
+ printf("   %s   ", common_cmds[i].name);
+ mput_char(' ', longest - strlen(common_cmds[i].name));
+ puts(_(common_cmds[i].help));
+ printf("\n");
+ }
+ else {
+ printf("   %s   ", common_cmds[i].name);
+ mput_char(' ', longest - strlen(common_cmds[i].name));
+ puts(_(common_cmds[i].help));
+ }
+
  }
 }


Regards
Alangi Derick Ndimnain

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-05-02  9:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-01 18:33 [Patch] Nice help Output - SmallProjectIdea[1] Alangi Derick
2015-05-01 19:11 ` Thomas Gummerer
2015-05-02  7:04   ` Alangi Derick
2015-05-02  9:51     ` Thomas Gummerer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.