[PATCH 7/7] gitweb.conf.txt: switch pluses to backticks to help Asciidoctor

2019-09-07 Thread Martin Ågren
This paragraph uses a lot of +pluses+ to render text as monospace. That works fine with AsciiDoc (8.6.10), and almost fine with Asciidoctor (1.5.5), which renders the third of these literally ("+$projname+"). The reason seems to be that Asciidoctor trips on the lone plus a bit earlier, even though

Re: [PATCH] help: make help_unknown_ref() NORETURN

2019-08-29 Thread Martin Ågren
? Of course, you're right. > > I wonder whether the real bug here is that the implementation calls (Re-reading this, "the real bug" might be a bit of a harsh statement. I didn't mean to imply that this patch does not fix an actual problem.) > > `exit(1)`

Re: [PATCH] help: make help_unknown_ref() NORETURN

2019-08-29 Thread René Scharfe
that information to callers across compilation units if not for the header file, right? > I wonder whether the real bug here is that the implementation calls > `exit(1)`, not `die()`. That is, the exit code is wrong (1 != 128) and > we're missing out on the flexibility offered b

Re: [PATCH] help: make help_unknown_ref() NORETURN

2019-08-29 Thread Martin Ågren
On Thu, 29 Aug 2019 at 21:15, René Scharfe wrote: > > Announce that calling help_unknown_ref() exits the program. > > Signed-off-by: René Scharfe > --- > Patch generated with --function-context for easier review. > > help.c | 3 ++- > help.h | 2 +- > 2 files changed, 3 insertions(+), 2 deletion

[PATCH] help: make help_unknown_ref() NORETURN

2019-08-29 Thread René Scharfe
Announce that calling help_unknown_ref() exits the program. Signed-off-by: René Scharfe --- Patch generated with --function-context for easier review. help.c | 3 ++- help.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/help.c b/help.c index 5261d83ecf..9ff2be6b18 10064

[PATCH v4 00/11] git add -i: add a rudimentary version in C (supporting only status and help so far)

2019-08-27 Thread Johannes Schindelin via GitGitGadget
(see https://github.com/gitgitgadget/git/pull/103) during the Outreachy project by Slavica Ðukic that continued the journey based on an initial patch series by Daniel Ferreira. It only implements the status and the help part, in the interest of making the review remotely more reviewable. As I am a

[PATCH v4 09/11] built-in add -i: support `?` (prompt help)

2019-08-27 Thread Johannes Schindelin via GitGitGadget
From: Johannes Schindelin With this change, we print out the same colored help text that the Perl-based `git add -i` prints in the main loop when question mark is entered. Signed-off-by: Johannes Schindelin --- add-interactive.c | 22 +- 1 file changed, 21 insertions(+), 1

[PATCH v4 11/11] built-in add -i: implement the `help` command

2019-08-27 Thread Johannes Schindelin via GitGitGadget
From: Johannes Schindelin This imitates the code to show the help text from the Perl script `git-add--interactive.perl` in the built-in version. To make sure that it renders exactly like the Perl version of `git add -i`, we also add a test case for that to `t3701-add-interactive.sh`. Signed

I WANT YOU TO USE THIS DONATION TO HELP THE POOR URGENT.

2019-08-16 Thread Mrs Yvonne D Balakiwal
My Sincere Greetings, I am Mrs Yvonne D Balakiwal, I decided to donate what I have to you for investment towards the good work of charity organization, and also to help the motherless and the less privileged ones and to carry out a charitable works in your Country and around the World on my

git-svn help for non-standard tags/branches !!

2019-08-10 Thread Vanak, Ibrahim
Hello, I have been using git-svn tool for SVN to GIT migration. I see issues in migration of branches/tags located in SVN at different level of hierarchy. To some extent I can define the layout in config file but it's difficult in few cases. like https:/svnrepo a/b/branches/ a/b/c/branches/ a/

Re: [PATCH v3 11/11] built-in add -i: implement the `help` command

2019-08-02 Thread Jeff King
On Fri, Aug 02, 2019 at 02:04:09PM -0700, Junio C Hamano wrote: > > +static int run_help(struct add_i_state *s, const struct pathspec *ps, > > + struct file_list *files, struct list_options *opts) > [...] > > As we do not allow the command names to get translated, this makes > sense

help with git log --numstat

2019-08-02 Thread Alexander Mills
Hi all: Another question that came up for me recently. Using: git log --numstat I am seeing multiple emails attached to a single commit as described here: https://stackoverflow.com/questions/57333971/git-log-numstat-has-weird-data does anyone know what that means? -alex -- Alexander D. Mi

Re: [PATCH v3 00/11] git add -i: add a rudimentary version in C (supporting only status and help so far)

2019-08-02 Thread Junio C Hamano
Johannes Schindelin writes: >> As I am a heavy user of git add -p myself and use a patched version for >> weeks already (it is so nice to not suffer over one second startup until the >> MSYS2 Perl finally shows me anything, instead it feels instantaneous), I >> integrated these patch series into

Re: [PATCH v3 11/11] built-in add -i: implement the `help` command

2019-08-02 Thread Junio C Hamano
. > diff --git a/t/t3701-add-interactive.sh b/t/t3701-add-interactive.sh > index 69991a3168..cf67756b85 100755 > --- a/t/t3701-add-interactive.sh > +++ b/t/t3701-add-interactive.sh > @@ -647,4 +647,29 @@ test_expect_success 'checkout -p works with pathological >

Re: Need help

2019-07-24 Thread Emily Shaffer
Hi Gobinda, if you have a consistent way to reproduce the issue, check out `git bisect`: https://git-scm.com/docs/git-bisect - Emily On Wed, Jul 24, 2019 at 12:11 AM Gobinda Nandi wrote: > > Hi, > > I have cloned a project using GIT. There I am facing one issue and nobody is > confident that

Need help

2019-07-24 Thread Gobinda Nandi
Hi, I have cloned a project using GIT. There I am facing one issue and nobody is confident that when that issue was not there. They are convinced that earlier it was working well but noe its not. I am trying revert the version but still I am finding the issue. I know this can depend upon severa

Re: [PATCH v3 00/11] git add -i: add a rudimentary version in C (supporting only status and help so far)

2019-07-16 Thread Johannes Schindelin
Daniel Ferreira. > > It only implements the status and the help part, in the interest of making > the review remotely more reviewable. > > As I am a heavy user of git add -p myself and use a patched version for > weeks already (it is so nice to not suffer over one second startup unt

[PATCH v3 11/11] built-in add -i: implement the `help` command

2019-07-16 Thread Johannes Schindelin via GitGitGadget
From: Johannes Schindelin This imitates the code to show the help text from the Perl script `git-add--interactive.perl` in the built-in version. To make sure that it renders exactly like the Perl version of `git add -i`, we also add a test case for that to `t3701-add-interactive.sh`. Signed

[PATCH v3 00/11] git add -i: add a rudimentary version in C (supporting only status and help so far)

2019-07-16 Thread Johannes Schindelin via GitGitGadget
(see https://github.com/gitgitgadget/git/pull/103) during the Outreachy project by Slavica Ðukic that continued the journey based on an initial patch series by Daniel Ferreira. It only implements the status and the help part, in the interest of making the review remotely more reviewable. As I am a

[PATCH v3 09/11] built-in add -i: support `?` (prompt help)

2019-07-16 Thread Johannes Schindelin via GitGitGadget
From: Johannes Schindelin With this change, we print out the same colored help text that the Perl-based `git add -i` prints in the main loop when question mark is entered. Signed-off-by: Johannes Schindelin --- add-interactive.c | 22 +- 1 file changed, 21 insertions(+), 1

Re: Need help merging unrelated histories

2019-05-29 Thread Philip Oakley
Hi Robert, A few comments to look at, which may help. On 28/05/2019 19:26, Robert Dailey wrote: On Tue, May 28, 2019 at 8:35 AM Robert Dailey wrote: On Fri, May 24, 2019 at 12:11 PM Andreas Schwab wrote: On Mai 24 2019, Robert Dailey wrote: Can anyone provide some advice on how to

Re: Need help merging unrelated histories

2019-05-28 Thread Robert Dailey
ience with low level plumbing > commands. Could you provide an example of a series of commands to run? > It will help me to figure out how to do it on my own for my specific > use case. Thanks in advance. Toyed around with it a bit, and tried with the script below. There were no errors, but

Re: Need help merging unrelated histories

2019-05-28 Thread Robert Dailey
hes were based on this in a linear fashion? > > How about using git replace --graft, then git filter-branch to make it > permanent? I unfortunately have little-to-no experience with low level plumbing commands. Could you provide an example of a series of commands to run? It will help me

Re: Need help merging unrelated histories

2019-05-24 Thread Andreas Schwab
On Mai 24 2019, Robert Dailey wrote: > Can anyone provide some advice on how to properly restructure this > repository to create some ancestry, as if all along a `master` existed > and all release branches were based on this in a linear fashion? How about using git replace --graft, then git filt

Re: Need help merging unrelated histories

2019-05-24 Thread Ævar Arnfjörð Bjarmason
On Fri, May 24 2019, Robert Dailey wrote: > Everything I'm going to describe is related to this repository: > > https://github.com/powervr-graphics/Native_SDK > > This repo has several distinct branches. None of them seem to be tied > to each other. Instead of having a `master` where they branch

Re: Need help merging unrelated histories

2019-05-24 Thread Robert Dailey
On Fri, May 24, 2019 at 9:04 AM Robert Dailey wrote: > > Everything I'm going to describe is related to this repository: > > https://github.com/powervr-graphics/Native_SDK > > This repo has several distinct branches. None of them seem to be tied > to each other. Instead of having a `master` where

Need help merging unrelated histories

2019-05-24 Thread Robert Dailey
Everything I'm going to describe is related to this repository: https://github.com/powervr-graphics/Native_SDK This repo has several distinct branches. None of them seem to be tied to each other. Instead of having a `master` where they branched off each of their releases (e.g. 3.1, 3.2, 4.0), it

[PATCH v3 0/2] accessing the git(1) help page

2019-05-15 Thread Philip Oakley
the mis-quoting of a link to the html formatted github doc pages. Philip Oakley (2): git.c: show usage for accessing the git(1) help page Doc: git.txt: remove backticks from link and add git-scm.com/docs Documentation/git.txt | 3 ++- git.c | 3 ++- 2 files changed, 4 insert

[PATCH v3 1/2] git.c: show usage for accessing the git(1) help page

2019-05-15 Thread Philip Oakley
It is not immediately obvious how to use the `git help` system to show the git(1) page, with its overview and its background and coordinating material, such as environment variables. Let's simply list it as the last few words of the last usage line. Signed-off-by: Philip Oakley --- This fo

Re: [PATCH v2] git.c: show usage for accessing the git(1) help page

2019-05-15 Thread Eric Sunshine
On Wed, May 15, 2019 at 4:11 AM Philip Oakley wrote: > It is not immediately obvious how to use the `git help` system to show > the git(1) page, with its overview and its background and coordinating > material, such as environment variables. > > Let's simply list it as the l

[PATCH v2] git.c: show usage for accessing the git(1) help page

2019-05-15 Thread Philip Oakley
It is not immediately obvious how to use the `git help` system to show the git(1) page, with its overview and its background and coordinating material, such as environment variables. Let's simply list it as the last few words of the last usage line. Signed-off-by: Philip Oakley --- This fo

Re: [PATCH] git.c: show usage for accessing the git(1) help page

2019-05-14 Thread Philip Oakley
Hi Peff, On 15/05/2019 02:53, Jeff King wrote: On Tue, May 14, 2019 at 05:17:17PM -0700, Emily Shaffer wrote: const char git_more_info_string[] = N_("'git help -a' and 'git help -g' list available subcommands and some\n" "concept guide

Re: [PATCH] git.c: show usage for accessing the git(1) help page

2019-05-14 Thread Philip Oakley
Hi Emily, On 15/05/2019 01:17, Emily Shaffer wrote: On Tue, May 14, 2019 at 04:24:50PM +0100, Philip Oakley wrote: It is not immediately obvious how to use the `git help` system to show the git(1) page, with all its background and ccordinating material, such as environment variables. Let&#

Re: [PATCH] git.c: show usage for accessing the git(1) help page

2019-05-14 Thread Jeff King
On Tue, May 14, 2019 at 05:17:17PM -0700, Emily Shaffer wrote: > > const char git_more_info_string[] = > > N_("'git help -a' and 'git help -g' list available subcommands and > > some\n" > >"concept guides. See 'g

Re: [PATCH] git.c: show usage for accessing the git(1) help page

2019-05-14 Thread Emily Shaffer
On Tue, May 14, 2019 at 04:24:50PM +0100, Philip Oakley wrote: > It is not immediately obvious how to use the `git help` system > to show the git(1) page, with all its background and ccordinating > material, such as environment variables. > > Let's simply list it as the last f

[PATCH] git.c: show usage for accessing the git(1) help page

2019-05-14 Thread Philip Oakley
It is not immediately obvious how to use the `git help` system to show the git(1) page, with all its background and ccordinating material, such as environment variables. Let's simply list it as the last few words of the last usage line. Signed-off-by: Philip Oakley --- This follows fro

Re: git --help not actually showing the git(1) help page..

2019-05-14 Thread Philip Oakley
Hi Junio, On 13/05/2019 23:44, Junio C Hamano wrote: Philip Oakley writes: On GfW I commonly use the `git --help` when things go wrong, so making the response to that give the right advice would be good. There are three levels of details ;-) "git --help" is meant as a shorter a

Re: some git confusion (where git's advice didn't help)

2019-05-14 Thread Jeff King
On Tue, May 14, 2019 at 06:29:41PM +0700, Duy Nguyen wrote: > On Tue, May 14, 2019 at 07:21:15AM -0400, Jeff King wrote: > > I also think the "warning: refname ... is ambiguous" message would > > probably be a bit more helpful if it showed _which_ candidates it found > > (and which one it chose!).

Re: some git confusion (where git's advice didn't help)

2019-05-14 Thread Duy Nguyen
On Tue, May 14, 2019 at 07:21:15AM -0400, Jeff King wrote: > I also think the "warning: refname ... is ambiguous" message would > probably be a bit more helpful if it showed _which_ candidates it found > (and which one it chose!). Alternatively, just refuse to resolve ambiguous refs. It's not alwa

Re: some git confusion (where git's advice didn't help)

2019-05-14 Thread Jeff King
On Tue, May 14, 2019 at 11:54:43AM +0200, Ulrich Windl wrote: > > git branch --track origin/f-gcc-4.8 > Branch origin/f-gcc-4.8 set up to track local branch next. > > git fetch > > git branch > f-systemd > integration > master > * next > origin/f-gcc-4.8 > > git merge f-gcc-4.8 > merge: f-

some git confusion (where git's advice didn't help)

2019-05-14 Thread Ulrich Windl
Hi! I was fighting with a remote branch being missing: > git branch f-systemd integration master * next > git pull Already up-to-date. > git pull --all Fetching origin Already up-to-date. > git fetch f-gcc-4.8 fatal: 'f-gcc-4.8' does not appear to be a git repository fatal: Could not read fr

Re: git --help not actually showing the git(1) help page..

2019-05-13 Thread Junio C Hamano
Philip Oakley writes: > On GfW I commonly use the `git --help` when things go wrong, so > making the response to that give the right advice would be good. There are three levels of details ;-) "git --help" is meant as a shorter and sweeter version of "git help git"

Re: git --help not actually showing the git(1) help page..

2019-05-13 Thread Philip Oakley
Hi Peff On 13/05/2019 21:53, Jeff King wrote: On Mon, May 13, 2019 at 09:47:27PM +0100, Philip Oakley wrote: Is there a cli way, especially on Git for Windows bash, to get the html man page of git(1)? I have it on my system, so can go via another page but.. All the `git --help` appear to

Re: git --help not actually showing the git(1) help page..

2019-05-13 Thread Jeff King
On Mon, May 13, 2019 at 09:47:27PM +0100, Philip Oakley wrote: > Is there a cli way, especially on Git for Windows bash, to get the html man > page of git(1)? I have it on my system, so can go via another page but.. > > All the `git --help` appear to work, but I can't dete

git --help not actually showing the git(1) help page..

2019-05-13 Thread Philip Oakley
Is there a cli way, especially on Git for Windows bash, to get the html man page of git(1)? I have it on my system, so can go via another page but.. All the `git --help` appear to work, but I can't determine the correct invocation for bringing up the stupid content tracker's pa

[PATCH v2 11/11] built-in add -i: implement the `help` command

2019-05-13 Thread Johannes Schindelin via GitGitGadget
From: Johannes Schindelin This imitates the code to show the help text from the Perl script `git-add--interactive.perl` in the built-in version. To make sure that it renders exactly like the Perl version of `git add -i`, we also add a test case for that to `t3701-add-interactive.sh`. Signed

[PATCH v2 09/11] built-in add -i: support `?` (prompt help)

2019-05-13 Thread Johannes Schindelin via GitGitGadget
From: Johannes Schindelin With this change, we print out the same colored help text that the Perl-based `git add -i` prints in the main loop when question mark is entered. Signed-off-by: Johannes Schindelin --- add-interactive.c | 22 +- 1 file changed, 21 insertions(+), 1

[PATCH v2 00/11] git add -i: add a rudimentary version in C (supporting only status and help so far)

2019-05-13 Thread Johannes Schindelin via GitGitGadget
(see https://github.com/gitgitgadget/git/pull/103) during the Outreachy project by Slavica Ðukic that continued the journey based on an initial patch series by Daniel Ferreira. It only implements the status and the help part, in the interest of making the review remotely more reviewable. As I am a

[PATCH v3 15/16] help: move git-diff and git-reset to different groups

2019-04-25 Thread Nguyễn Thái Ngọc Duy
The third column in command-list.txt determines what group a common command is printed in 'git help'. "git reset" is currently in the "work on the current change (see also: git help everyday)" group. While it's true that "git reset" can manipulate t

[PATCH v2 3/8] help -a: do not list commands that are excluded from the build

2019-04-18 Thread Johannes Schindelin via GitGitGadget
From: Johannes Schindelin When built with NO_CURL or with NO_UNIX_SOCKETS, some commands are skipped from the build. It does not make sense to list them in the output of `git help -a`, so let's just not. Signed-off-by: Johannes Schindelin --- Makefile| 14 -- gen

Re: [PATCH 2/7] help -a: do not list commands that are excluded from the build

2019-04-18 Thread Johannes Schindelin
Hi Junio, On Mon, 15 Apr 2019, Junio C Hamano wrote: > "Johannes Schindelin via GitGitGadget" > writes: > > > SCRIPT_DEFINES = $(SHELL_PATH_SQ):$(DIFF_SQ):$(GIT_VERSION):\ > > $(localedir_SQ):$(NO_CURL):$(USE_GETTEXT_SCHEME):$(SANE_TOOL_PATH_SQ):\ > > diff --git a/generate-cmdlist.sh b/gene

Re: [PATCH 2/7] help -a: do not list commands that are excluded from the build

2019-04-15 Thread Junio C Hamano
"Johannes Schindelin via GitGitGadget" writes: > From: Johannes Schindelin > > When built with NO_CURL or with NO_UNIX_SOCKETS, some commands are > skipped from the build. It does not make sense to list them in the > output of `git help -a`, so let's just not. The

[PATCH 2/7] help -a: do not list commands that are excluded from the build

2019-04-12 Thread Johannes Schindelin via GitGitGadget
From: Johannes Schindelin When built with NO_CURL or with NO_UNIX_SOCKETS, some commands are skipped from the build. It does not make sense to list them in the output of `git help -a`, so let's just not. Signed-off-by: Johannes Schindelin --- Makefile| 14 -- gen

[PATCH v2 16/16] help: move git-diff and git-reset to different groups

2019-04-11 Thread Nguyễn Thái Ngọc Duy
The third column in command-list.txt determines what group a common command is printed in 'git help'. "git reset" is currently in the "work on the current change (see also: git help everyday)" group. While it's true that "git reset" can manipulate t

[PATCH 11/11] built-in add -i: implement the `help` command

2019-04-10 Thread Johannes Schindelin via GitGitGadget
From: Johannes Schindelin This imitates the code to show the help text from the Perl script `git-add--interactive.perl` in the built-in version. To make sure that it renders exactly like the Perl version of `git add -i`, we also add a test case for that to `t3701-add-interactive.sh`. Signed

[PATCH 09/11] built-in add -i: support `?` (prompt help)

2019-04-10 Thread Johannes Schindelin via GitGitGadget
From: Johannes Schindelin With this change, we print out the same colored help text that the Perl-based `git add -i` prints in the main loop when question mark is entered. Signed-off-by: Johannes Schindelin --- add-interactive.c | 24 +++- 1 file changed, 23 insertions

[PATCH 00/11] git add -i: add a rudimentary version in C (supporting only status and help so far)

2019-04-10 Thread Johannes Schindelin via GitGitGadget
implements the status and the help part, like Slavica's last iteration did, in the interest of making the review remotely more reviewable. I fear that this attempt of making it a bit more reviewable is pretty futile, as so many things changed. So I will ask the reviewers for forgiveness: plea

Re: git glossary --help ?

2019-04-07 Thread Junio C Hamano
Philip Oakley writes: >> But unlike "git foo --help", if the word that ought to name a >> subcommand instead names a known concept, e.g. "glossary", I do not >> think it is too bad if we DWIMmed what the user meant to say, >> i.e. turning &

Re: git glossary --help ?

2019-04-07 Thread Philip Oakley
Hi Junio, On 07/04/2019 14:43, Junio C Hamano wrote: Duy Nguyen writes: Phew... I didn't break anything! That behavior has been gone since 2c6b6d9f7d (help: make option --help open man pages only for Git commands, 2016-08-26). Ralf did not mention why he thought "git --help"

Re: git glossary --help ?

2019-04-07 Thread Junio C Hamano
Duy Nguyen writes: > Phew... I didn't break anything! > > That behavior has been gone since 2c6b6d9f7d (help: make option --help > open man pages only for Git commands, 2016-08-26). Ralf did not > mention why he thought "git --help" was a bad idea. But it >

Re: git glossary --help ?

2019-04-07 Thread Philip Oakley
Hi Duy, On 07/04/2019 04:20, Duy Nguyen wrote: On Sun, Apr 7, 2019 at 12:31 AM Philip Oakley wrote: Following the discussions about the tag peeling issue, I thought to have a look at what the git glossary says. I had it in my head that when the git guides were linked to the help system, that

Re: git glossary --help ?

2019-04-06 Thread Duy Nguyen
On Sun, Apr 7, 2019 at 12:31 AM Philip Oakley wrote: > > Following the discussions about the tag peeling issue, I thought to have > a look at what the git glossary says. > > I had it in my head that when the git guides were linked to the help > system, that the --help optio

Re: git glossary --help ?

2019-04-06 Thread Philip Oakley
Hi Andreas, On 06/04/2019 19:09, Andreas Schwab wrote: On Apr 06 2019, Philip Oakley wrote: Following the discussions about the tag peeling issue, I thought to have a look at what the git glossary says. I had it in my head that when the git guides were linked to the help system, that the

Re: git glossary --help ?

2019-04-06 Thread Andreas Schwab
On Apr 06 2019, Philip Oakley wrote: > Following the discussions about the tag peeling issue, I thought to have a > look at what the git glossary says. > > I had it in my head that when the git guides were linked to the help > system, that the --help option provided a short ci

git glossary --help ?

2019-04-06 Thread Philip Oakley
Following the discussions about the tag peeling issue, I thought to have a look at what the git glossary says. I had it in my head that when the git guides were linked to the help system, that the --help option provided a short circuit direct to help item. However this did not happen. I

RE:[New to the mailing list] Searching for help

2019-03-21 Thread MARIE Alexandre
Hello Philip > This list is for the development of Git. There is a googlegroups list > for git users. However.. Sorry, my mistake, I found this mailing list here[0] where it is written that this is one for asking questions, having comments or reporting bugs. > A detached head simply means that

Re: [New to the mailing list] Searching for help

2019-03-21 Thread Philip Oakley
Hi Alex On 21/03/2019 14:11, MARIE Alexandre wrote: Hello, I am searching for help as I made two mistakes, I think. First I fetched origin in a 'branch' called temp that is in a 'detached head' state. But I can't delete temp by checking out master. I don't kn

[New to the mailing list] Searching for help

2019-03-21 Thread MARIE Alexandre
Hello, I am searching for help as I made two mistakes, I think. First I fetched origin in a 'branch' called temp that is in a 'detached head' state. But I can't delete temp by checking out master. I don't know how to get rid of this temp detached head. Second, the

Help

2019-03-16 Thread Linda Brinsfield
Sent from my iPhone this is my new phone and number

I am working on my Excel workbooks and I need your help because I know nothing about Excell. PLEASE PLEASE

2019-03-16 Thread Linda Brinsfield
Sent from my iPhone this is my new phone and number

[PATCH v5 08/10] add-interactive.c: implement show-help command

2019-02-20 Thread Slavica Djukic via GitGitGadget
From: Slavica Djukic Implement show-help command in add-interactive.c and use it in builtin add--helper.c. Use command name "show-help" instead of "help": add--helper is builtin, hence add--helper --help would be intercepted by handle_builtin and re-routed to the help c

[PATCH v5 10/10] add--interactive.perl: use add--helper --show-help for help_cmd

2019-02-20 Thread Slavica Djukic via GitGitGadget
From: Slavica Djukic Change help_cmd sub in git-add--interactive.perl to use show-help command from builtin add--helper. If an error occurs, it will be reported, but the Perl script will not exit, since the add--helper is called within an eval block. Just like the change where the Perl script

Re: [PATCH] help: align the longest command in the command listing

2019-02-01 Thread Duy Nguyen
On Fri, Feb 1, 2019 at 2:42 PM Johannes Schindelin wrote: > > diff --git a/help.c b/help.c > > index ff05fd22df..520c9080e8 100644 > > --- a/help.c > > +++ b/help.c > > @@ -85,7 +85,8 @@ static void print_command_list(const struct cmdname_help > > *cmds, > > if (cmds[i].category & m

Re: [PATCH] help: align the longest command in the command listing

2019-01-31 Thread Johannes Schindelin
if (longest > len) > + mput_char(' ', longest - len); Why not simply replace the `1` by `0`? Ciao, Dscho > puts(_(cmds[i].help)); > } > } > -- > 2.20.1.682.gd5861c6d90 > >

[PATCH] help: align the longest command in the command listing

2019-01-31 Thread Nguyễn Thái Ngọc Duy
ame); - mput_char(' ', longest > len ? longest - len : 1); + if (longest > len) + mput_char(' ', longest - len); puts(_(cmds[i].help)); } } -- 2.20.1.682.gd5861c6d90

[PATCH v4 7/7] add--interactive.perl: use add--helper --show-help for help_cmd

2019-01-25 Thread Slavica Djukic via GitGitGadget
From: Slavica Djukic Change help_cmd sub in git-add--interactive.perl to use show-help command from builtin add--helper. If an error occurs, it will be reported, but the Perl script will not exit, since the add--helper is called within an eval block. Just like the change where the Perl script

[PATCH v4 5/7] add-interactive.c: implement show-help command

2019-01-25 Thread Slavica Djukic via GitGitGadget
From: Slavica Djukic Implement show-help command in add-interactive.c and use it in builtin add--helper.c. Use command name "show-help" instead of "help": add--helper is builtin, hence add--helper --help would be intercepted by handle_builtin and re-routed to the help c

Re: [PATCH v3 7/7] add--interactive.perl: use add--helper --show-help for help_cmd

2019-01-21 Thread Slavica Djukic
Hello Ævar, thanks for taking time and making review. On 21-Jan-19 10:59 AM, Ævar Arnfjörð Bjarmason wrote: On Mon, Jan 21 2019, Slavica Djukic via GitGitGadget wrote: From: Slavica Djukic Change help_cmd sub in git-add--interactive.perl to use show-help command from builtin add--helper

Re: [PATCH v3 7/7] add--interactive.perl: use add--helper --show-help for help_cmd

2019-01-21 Thread Ævar Arnfjörð Bjarmason
On Mon, Jan 21 2019, Slavica Djukic via GitGitGadget wrote: > From: Slavica Djukic > > Change help_cmd sub in git-add--interactive.perl to use > show-help command from builtin add--helper. > > Signed-off-by: Slavica Djukic > --- > git-add--interactive.perl | 11 +

[PATCH v3 5/7] add-interactive.c: implement show-help command

2019-01-21 Thread Slavica Djukic via GitGitGadget
From: Slavica Djukic Implement show-help command in add-interactive.c and use it in builtin add--helper.c. Use command name "show-help" instead of "help": add--helper is builtin, hence add--helper --help would be intercepted by handle_builtin and re-routed to the help c

[PATCH v3 7/7] add--interactive.perl: use add--helper --show-help for help_cmd

2019-01-21 Thread Slavica Djukic via GitGitGadget
From: Slavica Djukic Change help_cmd sub in git-add--interactive.perl to use show-help command from builtin add--helper. Signed-off-by: Slavica Djukic --- git-add--interactive.perl | 11 +-- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/git-add--interactive.perl b/git

Re: [PATCH v2 5/7] add-interactive.c: implement show-help command

2019-01-18 Thread Johannes Schindelin
Hi Phillip, On Fri, 18 Jan 2019, Phillip Wood wrote: > On 18/01/2019 12:19, Slavica Đukić wrote: > > > > On 18-Jan-19 12:20 PM, Phillip Wood wrote: > > > > > > I think this round is looking good I've got a couple of comments > > > about the transla

Re: [PATCH v2 5/7] add-interactive.c: implement show-help command

2019-01-18 Thread Phillip Wood
Hi Slavica On 18/01/2019 12:19, Slavica Đukić wrote: Hi Phillip, On 18-Jan-19 12:20 PM, Phillip Wood wrote: Hi Slavica I think this round is looking good I've got a couple of comments about the translation of the help text but everything else looks fine to me now. In future when y

Re: [PATCH v2 5/7] add-interactive.c: implement show-help command

2019-01-18 Thread Slavica Djukic
Hi Phillip, On 18-Jan-19 12:20 PM, Phillip Wood wrote: Hi Slavica I think this round is looking good I've got a couple of comments about the translation of the help text but everything else looks fine to me now. In future when you're posting a new version it's helpful CC

Re: [PATCH v2 5/7] add-interactive.c: implement show-help command

2019-01-18 Thread Phillip Wood
Hi Slavica I think this round is looking good I've got a couple of comments about the translation of the help text but everything else looks fine to me now. In future when you're posting a new version it's helpful CC the people who commented on the previous version(s). On 1

[PATCH v2 7/7] add--interactive.perl: use add--helper --show-help for help_cmd

2019-01-17 Thread Slavica Djukic via GitGitGadget
From: Slavica Djukic Change help_cmd sub in git-add--interactive.perl to use show-help command from builtin add--helper. Signed-off-by: Slavica Djukic --- git-add--interactive.perl | 11 +-- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/git-add--interactive.perl b/git

[PATCH v2 5/7] add-interactive.c: implement show-help command

2019-01-17 Thread Slavica Djukic via GitGitGadget
From: Slavica Djukic Implement show-help command in add-interactive.c and use it in builtin add--helper.c. Use command name "show-help" instead of "help": add--helper is builtin, hence add--helper --help would be intercepted by handle_builtin and re-routed to the help c

Re: New to git. Need help!

2019-01-16 Thread Ævar Arnfjörð Bjarmason
tion but it > is too large and I don't know where to start. > If anybody could help me out it would be much appreciated. The recent https://public-inbox.org/git/86fttvcehs@matthieu-moy.fr/ thread should be of interest to you. We also have a #git-devel IRC channel on Freenode, but i

Re: New to git. Need help!

2019-01-16 Thread Duy Nguyen
s and documentation but it > is too large and I don't know where to start. Maybe https://git.github.io/SoC-2018-Microprojects/ and https://public-inbox.org/git/38df1011-34d3-e34e-9c4c-b70a0c657...@gmail.com/T/#m8f272e3359add2679343acdf7f8ccd8f2547fc16 > If anybody could help m

New to git. Need help!

2019-01-15 Thread Kaustubh Shankar
body could help me out it would be much appreciated. Regards, Kaustubh Shankar

Re: [PATCH 7/7] add--interactive.perl: use add--helper --show-help for help_cmd

2019-01-14 Thread Phillip Wood
Hi Slavica On 20/12/2018 12:09, Slavica Djukic via GitGitGadget wrote: > From: Slavica Djukic > > Change help_cmd sub in git-add--interactive.perl to use > show-help command from builtin add--helper. > > Add test to t3701-add-interactive to verify that show-help > outputs

Re: [PATCH 5/7] add-interactive.c: implement show-help command

2019-01-14 Thread Phillip Wood
Hi Slavica I think the basics of this patch are fine, I've got a few comments below On 20/12/2018 12:09, Slavica Djukic via GitGitGadget wrote: > From: Slavica Djukic > > Implement show-help command in add-interactive.c and use it in > builtin add--helper.c. > > Use

Re: [PATCH v4 0/8] test-lib: add the '--stress' option to help reproduce occasional failures in flaky tests

2019-01-07 Thread Jeff King
On Sat, Jan 05, 2019 at 02:08:51AM +0100, SZEDER Gábor wrote: > To recap: this patch series tries to make reproducing rare failures in > flaky tests easier: it adds the '--stress' option to our test library > to run the test script repeatedly in multiple parallel jobs, in the > hope that the incre

[PATCH v4 0/8] test-lib: add the '--stress' option to help reproduce occasional failures in flaky tests

2019-01-04 Thread SZEDER Gábor
To recap: this patch series tries to make reproducing rare failures in flaky tests easier: it adds the '--stress' option to our test library to run the test script repeatedly in multiple parallel jobs, in the hope that the increased load creates enough variance in the timing of the test's commands

[PATCH v3 0/8] test-lib: add the '--stress' option to help reproduce occasional failures in flaky tests

2018-12-30 Thread SZEDER Gábor
to do that, and I noticed that two other -contributors have rolled their own scripts to do the same, all -choosing slightly different approaches. +such a failure is to run the test script repeatedly while the machine +is under load, and wait in the ho

[PATCH 5/7] add-interactive.c: implement show-help command

2018-12-20 Thread Slavica Djukic via GitGitGadget
From: Slavica Djukic Implement show-help command in add-interactive.c and use it in builtin add--helper.c. Use command name "show-help" instead of "help": add--helper is builtin, hence add--helper --help would be intercepted by handle_builtin and re-routed to the help c

[PATCH 7/7] add--interactive.perl: use add--helper --show-help for help_cmd

2018-12-20 Thread Slavica Djukic via GitGitGadget
From: Slavica Djukic Change help_cmd sub in git-add--interactive.perl to use show-help command from builtin add--helper. Add test to t3701-add-interactive to verify that show-help outputs expected content. Use GIT_PRETENT_TTY introduced in earlier commit to be able to test output color on

Re: [PATCH 2/2] help -a: handle aliases with long names gracefully

2018-12-12 Thread Junio C Hamano
"Johannes Schindelin via GitGitGadget" writes: > From: Johannes Schindelin > > We take pains to determine the longest command beforehand, so that we > can align the category column after printing the command names. > > However, then we re-use that value when printing the aliases. If any > alias

Re: [BUG] Git 2.20: `git help -a' hangs if specific git alias occurs

2018-12-11 Thread SZEDER Gábor
On Tue, Dec 11, 2018 at 06:30:26PM +0100, Sebastian Gniazdowski wrote: > Hello, > I've attached a screenshot for running `git help -a' that ends in a > hang and ~100% cpu usage, for the following ~/.gitconfig (it's also > attached): > > https://raw.githubuserconte

Re: [BUG] Git 2.20: `git help -a' hangs if specific git alias occurs

2018-12-11 Thread Duy Nguyen
On Tue, Dec 11, 2018 at 6:42 PM Sebastian Gniazdowski wrote: > > Hello, > I've attached a screenshot for running `git help -a' that ends in a > hang and ~100% cpu usage, for the following ~/.gitconfig (it's also > attached): > > https://raw.githubusercontent.c

  1   2   3   4   5   6   7   8   9   10   >