Re: Suggestion to add a new command(git print-tree)

2015-05-25 Thread Alangi Derick
Regards Alangi Derick Ndimnain On Mon, May 25, 2015 at 5:21 PM, Alangi Derick wrote: > With discussions i have on the irc channel(#git) i just noticed there > is the git ls-tree command but it doesn't format the tree so it will > be a good thing for the tree to be formatted.

Re: Suggestion to add a new command(git print-tree)

2015-05-25 Thread Alangi Derick
With discussions i have on the irc channel(#git) i just noticed there is the git ls-tree command but it doesn't format the tree so it will be a good thing for the tree to be formatted. I will like to embark on the project. Regards Alangi Derick Ndimnain On Mon, May 25, 2015 at 5:17 PM, A

Suggestion to add a new command(git print-tree)

2015-05-25 Thread Alangi Derick
ore that i will be discussing while talking about the idea. Thanks and if there is anything to say about this, feel free to comment. Regards Alangi Derick Ndimnain -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org Mo

[PATCH] Fixed a typographical error

2015-05-25 Thread Alangi Derick
>From e8c2ea38865cf5dcc135e34ec2e80def8736b582 Mon Sep 17 00:00:00 2001 From: Alangi Derick Date: Sun, 24 May 2015 14:58:30 +0100 Subject: [PATCH] Fixed a typographical error This is a patch to fix a typographical error in the 2.5.0.txt file in the Documentation/RelNotes directory. The error

Re: [PATCH] fixed translation in config file to enhance user output message from the porcelain command(git config). This fixes the error and die function by wrapping it in the _(...) function. This al

2015-05-06 Thread Alangi Derick
Thanks so much for the correction. So the points i should not is that; - I shouldn't Bcc but i should instead Cc - I should work with porcelain commands and not plumbing commands - My patch should have a description and a brief title But my problem is figuring out the porcelain commands from the pl

[PATCH] Fixed a translation error

2015-05-04 Thread Alangi Derick
Signed-off-by: Alangi Derick --- builtin/config.c | 34 +- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/builtin/config.c b/builtin/config.c index d32c532..2b6bf0a 100644 --- a/builtin/config.c +++ b/builtin/config.c @@ -85,7 +85,7 @@ static

Re: Patch that modifies git usage message

2015-05-01 Thread Alangi Derick
I am saying so because there are some strings with upper case letters and others with lower case letters. So there is no consistency. That is why i wanted to keep the consistency by correcting the letters which are to be corrected and allow the once which are to be allowed. Regards Alangi Derick

[PATCH v1] Improving code base readability

2015-05-01 Thread Alangi Derick
(path); else - fprintf(stderr, "bad sha1 file: %s\n", path); + fprintf(stderr, "Bad sha1 file: %s\n", path); return 0; } @@ -128,7 +128,7 @@ int cmd_prune(int argc, const char **argv, const char *prefix) add_pending_object(&revs, object, ""); } else - die("u

Patch that modifies git usage message

2015-05-01 Thread Alangi Derick
This patch just modifies the "usage" word to "Usage" which enhances readability. Below is the patch Regards Alangi Derick Ndimnain diff --git a/git.c b/git.c index 42a4ee5..481aa74 100644 --- a/git.c +++ b/git.c @@ -667,7 +667,7 @@ int main(int argc, char **av) } else {