Re: Subject: [PATCH/RFC] Documentation/git-stripspace: Update synopsis

2014-11-18 Thread Slavomir Vlcek
On 11/19/2014 12:16 AM, Slavomir Vlcek wrote: > b) In the documentation there is: > "-s, --strip-comments >Skip and remove all lines starting with comment character (default > #)." > > part. This "default" word somehow suggests some new comma

Subject: [PATCH/RFC] Documentation/git-stripspace: Update synopsis

2014-11-18 Thread Slavomir Vlcek
Add synopsis with the '--comment-lines' option. Signed-off-by: Slavomir Vlcek --- Hi, there were no mention of '--comment-lines' in the synopsis. ('--comment-lines' and '--strip-comments' options are mutually exclusive). I solved this by adding an extra

[PATCH] apply: fix typo in an error message

2014-11-16 Thread Slavomir Vlcek
s/submoule/submodule Signed-off-by: Slavomir Vlcek --- For the 'master'. Thank you. builtin/apply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/apply.c b/builtin/apply.c index 6696ea4..28d24f8 100644 --- a/builtin/apply.c +++ b/builtin/apply.c

Re: [PATCH/RFC] builtin: move builtin retrieval to get_builtin()

2014-11-16 Thread Slavomir Vlcek
On 11/13/2014 07:19 PM, Junio C Hamano wrote: >> git.c | 27 +++ >> 1 file changed, 15 insertions(+), 12 deletions(-) >> >> diff --git a/git.c b/git.c >> index 18fbf79..e32c5b8 100644 >> --- a/git.c >> +++ b/git.c >> @@ -487,15 +487,20 @@ static struct cmd_struct commands[]

Re: [PATCH] SubmittingPatches: fix an inconsistency

2014-11-13 Thread slavomir vlcek
On 11/13/2014 07:30 PM, Junio C Hamano wrote: > Junio C Hamano writes: > >> Junio C Hamano writes: >> >>>> Signed-off-by: slavomir vlcek >> >>> The same comment applies to the log message part. >> >> I said: >> >>> Will qu

[PATCH] SubmittingPatches: fix an inconsistency

2014-11-12 Thread slavomir vlcek
even what their names stand for). Thanks. Signed-off-by: slavomir vlcek --- >From 74859712cf805663e3863686bdc09511c74b207b Mon Sep 17 00:00:00 2001 From: slavomir vlcek Date: Thu, 13 Nov 2014 00:18:39 +0100 Subject: [PATCH] SubmittingPatches: fix an inconsistency At line 213 there was a

[PATCH/RFC] builtin: move builtin retrieval to get_builtin()

2014-11-12 Thread slavomir vlcek
Hi, found a small code redundancy in a builtin command retrieval ('git.c'). For the "master" branch. Thanks in advance for any suggestions. Signed-off-by: slavomir vlcek --- >From 78228e3f7c3029d07827f973fa7992777d6e0cb9 Mon Sep 17 00:00:00 2001 From: slavomir vlcek Da