[PATCH] help: make option --help open man pages only for Git commands

2016-08-12 Thread Ralf Thielow
If option --help is passed to a Git command, we try to open the man page of that command. However, we do it even for commands we don't know. Make sure the command is known to Git before try to open the man page. If we don't know the command, give the usual advice. Signed-off-by: Ra

Re: `git stash --help` tries to pull up nonexistent file gitstack.html

2016-08-12 Thread Jacob Keller
On Fri, Aug 12, 2016 at 9:25 AM, Junio C Hamano wrote: > On Fri, Aug 12, 2016 at 9:15 AM, Joseph Musser wrote: >> Oh, I'm embarrassed. The typo was mine, I must have typed `git stack >> --help`. I would have expected a syntax error message or "did you >> mean&quo

Re: `git stash --help` tries to pull up nonexistent file gitstack.html

2016-08-12 Thread Junio C Hamano
On Fri, Aug 12, 2016 at 9:15 AM, Joseph Musser wrote: > Oh, I'm embarrassed. The typo was mine, I must have typed `git stack > --help`. I would have expected a syntax error message or "did you > mean" suggestions; it didn't even enter my mind that it would look up >

Re: `git stash --help` tries to pull up nonexistent file gitstack.html

2016-08-12 Thread Joseph Musser
Oh, I'm embarrassed. The typo was mine, I must have typed `git stack --help`. I would have expected a syntax error message or "did you mean" suggestions; it didn't even enter my mind that it would look up whatever I typed before --help and assume it existed on disk. I'

Re: `git stash --help` tries to pull up nonexistent file gitstack.html

2016-08-12 Thread Lars Schneider
> On 12 Aug 2016, at 17:48, Junio C Hamano wrote: > > Joseph Musser writes: > >> Looks like a simple typo. > > Unfortunately this does not reproduce to me (built from source on > Ubuntu Linux). I tried it with the latest released version on Windows and OSX (2.9.2) and was not able to reprodu

Re: `git stash --help` tries to pull up nonexistent file gitstack.html

2016-08-12 Thread Junio C Hamano
Joseph Musser writes: > Looks like a simple typo. Unfortunately this does not reproduce to me (built from source on Ubuntu Linux). -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.or

`git stash --help` tries to pull up nonexistent file gitstack.html

2016-08-11 Thread Joseph Musser
Looks like a simple typo. Joseph Musser -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: Looking for help to understand external filter driver code

2016-07-20 Thread Jeff King
On Tue, Jul 19, 2016 at 02:33:09PM -0700, Junio C Hamano wrote: > > Git writes --> 4 byte content length > > Git writes --> content string > > Git reads <-- 4 byte filtered content length > > Git reads <-- filtered content > > Do you really need to force the sender to know the length in > advance

Re: Looking for help to understand external filter driver code

2016-07-20 Thread Lars Schneider
> On 20 Jul 2016, at 10:59, Jakub Narębski wrote: > > W dniu 2016-07-19 o 23:33, Junio C Hamano pisze: >> Lars Schneider writes: >> Git writes --> 4 byte filename length Git writes --> filename string >> >> Why limit to 32GB? Perhaps NUL termination is more appropriate >> here? >

Re: Looking for help to understand external filter driver code

2016-07-20 Thread Jakub Narębski
W dniu 2016-07-19 o 23:33, Junio C Hamano pisze: > Lars Schneider writes: > >> > Git writes --> 4 byte filename length >> > Git writes --> filename string > > Why limit to 32GB? Perhaps NUL termination is more appropriate > here? Errr, I think limiting _filename_ to 32GB is a reasonable assumpt

Re: Looking for help to understand external filter driver code

2016-07-19 Thread Torsten Bögershausen
On 07/20/2016 12:01 AM, Lars Schneider wrote: On 19 Jul 2016, at 23:33, Junio C Hamano wrote: Lars Schneider writes: Git writes --> 4 byte filename length Git writes --> filename string Why limit to 32GB? Perhaps NUL termination is more appropriate here? OK, I will use NUL terminatio

Re: Looking for help to understand external filter driver code

2016-07-19 Thread Lars Schneider
On 19 Jul 2016, at 23:33, Junio C Hamano wrote: > Lars Schneider writes: > >> Git writes --> 4 byte filename length >> Git writes --> filename string > > Why limit to 32GB? Perhaps NUL termination is more appropriate > here? OK, I will use NUL termination for the filename. You're also right

Re: Looking for help to understand external filter driver code

2016-07-19 Thread Junio C Hamano
Lars Schneider writes: > Git writes --> 4 byte filename length > Git writes --> filename string Why limit to 32GB? Perhaps NUL termination is more appropriate here? > Git writes --> 4 byte content length > Git writes --> content string > Git reads <-- 4 byte filtered content length > Git reads

Re: Looking for help to understand external filter driver code

2016-07-19 Thread Lars Schneider
On 19 Jul 2016, at 20:53, Junio C Hamano wrote: > Junio C Hamano writes: > >> The key benefit of this arrangement is the above can be done without >> having to do poll() to flip between reading and writing that is >> needed to avoid deadlocking, which kept the code simpler. A later >> convers

Re: Looking for help to understand external filter driver code

2016-07-19 Thread Junio C Hamano
Junio C Hamano writes: > The key benefit of this arrangement is the above can be done without > having to do poll() to flip between reading and writing that is > needed to avoid deadlocking, which kept the code simpler. A later > conversion of the write side into async does not fundamentally > c

Re: Looking for help to understand external filter driver code

2016-07-19 Thread Junio C Hamano
Lars Schneider writes: > a long time ago in aa4ed4 Junio introduced the external filter > driver definition. Since that time we fork the Git process and > then we fork again to run the external filter. This is probably a > super stupid question with an obvious answer... but can anyo

Looking for help to understand external filter driver code

2016-07-19 Thread Lars Schneider
Hi, a long time ago in aa4ed4 Junio introduced the external filter driver definition. Since that time we fork the Git process and then we fork again to run the external filter. This is probably a super stupid question with an obvious answer... but can anyone help me to understand the code and

[PATCH v5 29/38] i18n: merge: change command option help to lowercase

2016-06-17 Thread Vasco Almeida
Change command option description to lowercase, matching pull counterpart option. Translators would have to translate such message only once. Signed-off-by: Vasco Almeida --- builtin/merge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/merge.c b/builtin/merge.c ind

Re: `git help svn` missing description of `propset`

2016-06-08 Thread Alfred Perlstein
in a week hopefully with a patch. thank you, -Alfred On 6/7/16 1:08 PM, Eric Wong wrote: +Cc Alfred, David Joseph Pecoraro wrote: `git help svn` does not mention `propset` but it does mention `proplist` and `propget`. This seems like an oversight. $ git help svn .

Re: `git help svn` missing description of `propset`

2016-06-07 Thread Eric Wong
+Cc Alfred, David Joseph Pecoraro wrote: > `git help svn` does not mention `propset` but it does mention `proplist` and > `propget`. This seems like an oversight. > > > $ git help svn > ... > proplist > Lists the properties stored in the Sub

[PATCH v4 29/38] i18n: merge: change command option help to lowercase

2016-06-07 Thread Vasco Almeida
Change command option description to lowercase, matching pull counterpart option. Translators would have to translate such message only once. Signed-off-by: Vasco Almeida --- builtin/merge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/merge.c b/builtin/merge.c ind

`git help svn` missing description of `propset`

2016-06-06 Thread Joseph Pecoraro
`git help svn` does not mention `propset` but it does mention `proplist` and `propget`. This seems like an oversight. $ git help svn ... proplist Lists the properties stored in the Subversion repository about a given file or directory. Use -r/--revision

[PATCH v3 30/39] i18n: merge: change command option help to lowercase

2016-06-01 Thread Vasco Almeida
Change command option description to lowercase, matching pull counterpart option. Translators would have to translate such message only once. Signed-off-by: Vasco Almeida --- builtin/merge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/merge.c b/builtin/merge.c ind

Re: [PATCH] Documentation: add instructions to help setup gmail 2FA

2016-05-27 Thread Mike Rappazzo
On Fri, May 27, 2016 at 5:06 PM, Junio C Hamano wrote: > Michael Rappazzo writes: > >> For those who use two-factor authentication with gmail, git-send-email >> will not work unless it is setup with an app-specific password. The >> example for setting up git-send-email for use with gmail will now

Re: [PATCH] Documentation: add instructions to help setup gmail 2FA

2016-05-27 Thread Junio C Hamano
Michael Rappazzo writes: > For those who use two-factor authentication with gmail, git-send-email > will not work unless it is setup with an app-specific password. The > example for setting up git-send-email for use with gmail will now > include information on generating and storing the app-speci

[PATCH] Documentation: add instructions to help setup gmail 2FA

2016-05-27 Thread Michael Rappazzo
For those who use two-factor authentication with gmail, git-send-email will not work unless it is setup with an app-specific password. The example for setting up git-send-email for use with gmail will now include information on generating and storing the app-specific password. --- Documentation/gi

Re: [PATCH 04/10] shell helpers usage: always send help to stderr

2016-05-02 Thread Junio C Hamano
in designing these things... On Mon, May 2, 2016 at 5:45 PM, Junio C Hamano wrote: > Stefan Beller writes: > >> git --help |grep pull >> >> instead of >> >> git --help 2>&1 |grep pull > > Not just that. It makes me sad that it is unpredictable whi

Re: [PATCH 04/10] shell helpers usage: always send help to stderr

2016-05-02 Thread Junio C Hamano
Stefan Beller writes: > git --help |grep pull > > instead of > > git --help 2>&1 |grep pull Not just that. It makes me sad that it is unpredictable which stream a project happens to have chosen to send its help text and I end up almost always doing rand

Re: [PATCH 04/10] shell helpers usage: always send help to stderr

2016-05-02 Thread Stefan Beller
On Mon, May 2, 2016 at 4:28 PM, Junio C Hamano wrote: > Stefan Beller writes: > >> `git submodule asdf` would trigger displaying the usage of the submodule >> command on stderr, however `git submodule -h` would display the usage on >> stdout. Unify displaying help for

Re: [PATCH 04/10] shell helpers usage: always send help to stderr

2016-05-02 Thread Junio C Hamano
Stefan Beller writes: > `git submodule asdf` would trigger displaying the usage of the submodule > command on stderr, however `git submodule -h` would display the usage on > stdout. Unify displaying help for shell commands on stderr. The primary output from "git cmd --help" i

[PATCH 04/10] shell helpers usage: always send help to stderr

2016-04-29 Thread Stefan Beller
`git submodule asdf` would trigger displaying the usage of the submodule command on stderr, however `git submodule -h` would display the usage on stdout. Unify displaying help for shell commands on stderr. Signed-off-by: Stefan Beller --- git-sh-setup.sh | 2 +- 1 file changed, 1 insertion

Re: [ANNOUNCE] Git v2.8.1 (and call-for-help to "make rpmbuild" users)

2016-04-05 Thread Elia Pinto
ouncement, here is a call-for-help to > you. > > Git v2.8 removed README file and added a corresponding README.md > file. The change however did not adjust git.spec.in that still > referred to README, causing "make rpmbuild" to fail. The breakage > was not noticed by anyb

Re: [ANNOUNCE] Git v2.8.1 (and call-for-help to "make rpmbuild" users)

2016-04-05 Thread Michael J Gruber
efore I make an announcement, here is a call-for-help to > you. > > Git v2.8 removed README file and added a corresponding README.md > file. The change however did not adjust git.spec.in that still > referred to README, causing "make rpmbuild" to fail. The breakage > was not n

[ANNOUNCE] Git v2.8.1 (and call-for-help to "make rpmbuild" users)

2016-04-03 Thread Junio C Hamano
If you do not build RPM binary packages from our pristine source, you can safely ignore this release and stop reading this message. Now that the audience of this message has been limited to a narrow target, before I make an announcement, here is a call-for-help to you. Git v2.8 removed README

Re: git alias quoting help

2016-04-01 Thread shawn wilson
On Fri, Apr 1, 2016 at 7:05 AM, Christian Couder wrote: > On Wed, Mar 30, 2016 at 6:13 AM, shawn wilson wrote: >> I've also tried to make this a plain bash script (w/o the function or >> if statements and am failing at the same place). The issue seems to be >> with the quoting in the filter-branc

Re: git alias quoting help

2016-04-01 Thread Christian Couder
On Wed, Mar 30, 2016 at 6:13 AM, shawn wilson wrote: > I've also tried to make this a plain bash script (w/o the function or > if statements and am failing at the same place). The issue seems to be > with the quoting in the filter-branch | ls-files bit. Also, the end > goal here is to be able to m

Re: git alias quoting help

2016-04-01 Thread shawn wilson
I think I finally figured out how I want to do this: git remote add temp ..// git fetch temp git merge -s ours --no-commit temp/master git read-tree --prefix= -u temp/master: git commit -m "foo" However, when I do this, I've got all of the commits from the original (temp) repo. How do I prune the

Re: git alias quoting help

2016-03-31 Thread shawn wilson
FWIW, I (finally) found two projects that like they'll do what I want: git-splits and git_filter The later was lacking in documentation and after the build I couldn't figure it out at a glance and I think git-splits will DWIW. On Thu, Mar 31, 2016 at 10:27 AM, shawn wilson wrote: > BTW, just tryi

Re: git alias quoting help

2016-03-31 Thread shawn wilson
BTW, just trying to get filter-branch to interpret the bash script string correctly now and it still isn't working: git filter-branch -f --prune-empty --index-filter "\ git ls-files -s | \ sed \"s-\\t\\\"*-&${1}-\" | \ GIT_INDEX_FILE=\$GIT_INDEX_FILE.new \ git update-index --index-info &&

git alias quoting help

2016-03-29 Thread shawn wilson
I've also tried to make this a plain bash script (w/o the function or if statements and am failing at the same place). The issue seems to be with the quoting in the filter-branch | ls-files bit. Also, the end goal here is to be able to move a directory from one repo and keep the history. While this

Re: git difftool help

2016-03-29 Thread Chris Packham
On Tue, Mar 29, 2016 at 3:07 AM, ratheesh kannoth wrote: > 'git diff 'is opening in meld. I could not create a patch using - git > diff > ./patch-01 > i did not make any change to pick meld, by default it is picking meld. > > > Which "git difftool" will

Best regards! Dear Sir or Madam! - please help our site - пожалуйста, помогите нашему сайту - будь ласка, допоможіть нашому сайту http://edu-community.pp.ua/

2016-03-29 Thread admin
Best regards! Dear Sir or Madam! please at the top of any page of site click once on the advertising banner, so that we could pay for hosting our site, Thank you ad...@edu-community.pp.ua http://edu-community.pp.ua/ добрий день, просимо на будь-якій сторінці вгорі один раз натиснути на рекламний

git difftool help

2016-03-28 Thread ratheesh kannoth
'git diff 'is opening in meld. I could not create a patch using - git diff > ./patch-01 i did not make any change to pick meld, by default it is picking meld. Which "git difftool" will help to create patch ? i do want to use format patch as changes are not yet commit

Re: [PATCH 2/2] completion: add 'revisions' and 'everyday' to 'git help'

2016-03-24 Thread Junio C Hamano
"Philip Oakley" writes: >> The first step may be to teach a new subcommand to "git help" >> to show a list of these words, and then _git_help can use it to >> lazily compute the list just like __git_commands does. > > 'git help -a' (or --al

Re: [PATCH 2/2] completion: add 'revisions' and 'everyday' to 'git help'

2016-03-24 Thread Philip Oakley
Wouldn't it make more sense to go in the direction of _removing_ this list of hardcoded words here? The first step may be to teach a new subcommand to "git help" to show a list of these words, and then _git_help can use it to lazily compute the list just like __git_commands does.

Re: [PATCH 2/2] completion: add 'revisions' and 'everyday' to 'git help'

2016-03-24 Thread Junio C Hamano
t make more sense to go in the direction of _removing_ this list of hardcoded words here? The first step may be to teach a new subcommand to "git help" to show a list of these words, and then _git_help can use it to lazily compute the list just like __git_commands does. But this change

Re: [PATCH 1/2] completion: add option '--guides' to 'git help'

2016-03-24 Thread Junio C Hamano
Ralf Thielow writes: > Signed-off-by: Ralf Thielow > --- > contrib/completion/git-completion.bash | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Sounds sensible. Thanks. > > diff --git a/contrib/completion/git-completion.bash > b/contrib/completion/git-completion.bash > index e3918

[PATCH 2/2] completion: add 'revisions' and 'everyday' to 'git help'

2016-03-24 Thread Ralf Thielow
Signed-off-by: Ralf Thielow --- contrib/completion/git-completion.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 70f4171..ffe6004 100644 --- a/contrib/completion/git-completion.bas

[PATCH 0/2] completion: git-help: add missing option and params

2016-03-24 Thread Ralf Thielow
The bash completion is missing the option '--guides' for 'git-help' and some params you see there. Add them both. Ralf Thielow (2): completion: add option '--guides' to 'git help' completion: add 'revisions' and 'everyday' to '

[PATCH 1/2] completion: add option '--guides' to 'git help'

2016-03-24 Thread Ralf Thielow
Signed-off-by: Ralf Thielow --- contrib/completion/git-completion.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index e3918c8..70f4171 100644 --- a/contrib/completion/git-completion.bash ++

With best regards! Dear Sir or Madam! - please help our school site - пожалуйста, помогите нашему сайту - будь ласка, допоможіть нашому сайту http://school-site.kiev.ua/

2016-03-19 Thread admin
With best regards! Dear Sir or Madam! please at the top of any page of site click once on the advertising banner, so that we could pay for hosting our school site, Thank you ad...@school-site.kiev.ua http://school-site.kiev.ua/ добрий день, просимо на будь-якій сторінці вгорі один раз натиснути

Re: [PATCH] gitk: Follow themed bgcolor in help dialogs

2016-03-19 Thread Paul Mackerras
On Thu, Feb 04, 2016 at 03:32:19AM +0100, Guillermo S. Romero wrote: > Make Help > About & Key bindings dialogs readable if theme > has changed font color to something incompatible with white. > > Signed-off-by: Guillermo S. Romero Thanks, applied. Paul. -- To unsubscribe f

Re: Bug#813084: Background git gc fails, telling me to run git prune, which doesn't help

2016-02-27 Thread Ben Hutchings
Control: forwarded -1 git@vger.kernel.org On Fri, 2016-01-29 at 21:05 +0700, Duy Nguyen wrote: > On Fri, Jan 29, 2016 at 8:35 PM, Ben Hutchings wrote: > > git keeps trying to do a background gc on my linux repository, but > > fails, reporting this in .git/gc.log: > > > > warning: There are too m

Kind regards! Dear Sir or Madam! - please help our school site - пожалуйста, помогите нашему школьному сайту - будь ласка, допоможіть нашому шкільному сайту http://40030ssch2.pp.ua/

2016-02-27 Thread admin
Kind regards! Dear Sir or Madam! please at the top of any page of site click once on the advertising banner, so that we could pay for hosting our school site, Thank you ad...@40030ssch2.pp.ua http://40030ssch2.pp.ua/ добрий день, просимо на будь-якій сторінці вгорі один раз натиснути на рекламни

Good day! Dear Sir or Madam! - please help our school site - пожалуйста, помогите нашему школьному сайту - будь ласка, допоможіть нашому шкільному сайту http://bilokaminsky-nvk.pp.ua/

2016-02-15 Thread admin
Good day! Dear Sir or Madam! please at the top of any page of site click once on the advertising banner, so that we could pay for hosting our school site, Thank you ad...@bilokaminsky-nvk.pp.ua http://bilokaminsky-nvk.pp.ua/ добрий день, просимо на будь-якій сторінці вгорі один раз натиснути на

Best regards! Dear Sir or Madam! - please help our school site - пожалуйста, помогите нашему школьному сайту - будь ласка, допоможіть нашому шкільному сайту http://bilokaminsky-nvk.pp.ua/

2016-02-04 Thread admin
Best regards! Dear Sir or Madam! please at the top of any page of site click once on the advertising banner, so that we could pay for hosting our school site, Thank you ad...@bilokaminsky-nvk.pp.ua http://bilokaminsky-nvk.pp.ua/ добрий день, просимо на будь-якій сторінці вгорі один раз натиснути

[PATCH] gitk: Follow themed bgcolor in help dialogs

2016-02-03 Thread Guillermo S. Romero
Make Help > About & Key bindings dialogs readable if theme has changed font color to something incompatible with white. Signed-off-by: Guillermo S. Romero --- Hi: Found more places where themable colors makes things unreadable because not everything adapted to the changed style. GSR

Dear Sir or Madam! - please help our site - пожалуйста, помогите нашему сайту - будь ласка, допоможіть нашому сайту http://petition.kiev.ua/

2016-01-27 Thread admin
Dear Sir or Madam! please at the top of any page of site click once on the advertising banner, so that we could pay for hosting our site, Thank you ad...@petition.kiev.ua http://petition.kiev.ua/ добрий день, просимо на будь-якій сторінці вгорі один раз натиснути на рекламний банер, щоб ми змогл

[PATCH] Consistent usage of working tree in the git-add help

2016-01-21 Thread Lars Vogel
The usage of working directory is inconsistent in the git add help. Also http://git-scm.com/docs/git-clone speaks only about working tree. Remaining entry found by "git grep -B1 '^directory' git-add.txt" really relates to a directory. Signed-off-by: Lars Vogel --- Documenta

Re: [PATCH] Consistent usage of working tree in the git-add help

2016-01-21 Thread Lars Vogel
Thanks Junio for the feedback. I send a new patch with only the first change. On Thu, Jan 21, 2016 at 1:24 AM, Junio C Hamano wrote: > Lars Vogel writes: > >> The usage of working directory is inconsistent in the git add help. >> Also http://git-scm.com/docs/giit-clone speaks

Re: [PATCH] Consistent usage of working tree in the git-add help

2016-01-20 Thread Junio C Hamano
Lars Vogel writes: > The usage of working directory is inconsistent in the git add help. > Also http://git-scm.com/docs/giit-clone speaks only about working tree. > Remaining entry found by "git grep -B1 '^directory' git-add.txt" really > relates to a director

Dear Sir or Madam, let the New Year be more successful for you! - please help our site - пожалуйста, помогите нашему сайту - будь ласка, допоможіть нашому сайту http://kyiv230school.pp.ua/

2016-01-06 Thread admin
Dear Sir or Madam, let the New Year be more successful for you! good day, ask at the top of any page click once on the banner, so that we could pay for hosting our site, Thank you ad...@kyiv230school.pp.ua http://kyiv230school.pp.ua/ добрий день, просимо на будь-якій сторінці вгорі один раз нати

[PATCH/RFC 1/2] describe: mention glob in the --matches help text

2015-12-27 Thread Mostyn Bramley-Moore
This saves the user from needing to consult to manpage to learn the format of the --matches argument. Signed-off-by: Mostyn Bramley-Moore --- builtin/describe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/describe.c b/builtin/describe.c index 8a25abe..2386c64

Re: Help debugging git-svn

2015-12-18 Thread Edmundo Carmona Antoranz
On Fri, Dec 18, 2015 at 11:28 AM, Edmundo Carmona Antoranz wrote: > Ok I came up with another idea to avoid having to deal with the > old svn history (I'm having no problems fetching/dcommitting with my > current repo). I already have the branches I work with, the thing is > that the revisions

Re: Help debugging git-svn

2015-12-18 Thread Edmundo Carmona Antoranz
Ok I came up with another idea to avoid having to deal with the old svn history (I'm having no problems fetching/dcommitting with my current repo). I already have the branches I work with, the thing is that the revisions I fetched before I started using the svn authors file have nasty IDs inste

Re: Help debugging git-svn

2015-12-16 Thread Edmundo Carmona Antoranz
On Wed, Dec 16, 2015 at 1:41 AM, Eric Wong wrote: > > Any chance you can reproduce this on a Linux system? > I do not use non-Free systems and have no debugging experience > there at all. > My wish But it's a big resounding "no". >> With my very flawed knowledge of perl I have seen that the

Re: Help debugging git-svn

2015-12-15 Thread Eric Wong
Edmundo Carmona Antoranz wrote: > 1 [main] perl 5652 cygwin_exception::open_stackdumpfile: Dumping stack > trace to perl.exe.stackdump > > And then, in the file: > > Exception: STATUS_ACCESS_VIOLATION at rip=0048360C10C > rax=000601E4BFF8 rbx=5219E248 rcx=00060003A590 > rdx=0

Help debugging git-svn

2015-12-15 Thread Edmundo Carmona Antoranz
Hello, Eric, Everybody! I need your help getting git-svn to clone a repository. I had already cloned it once but then a few months ago I discovered the authors map file and it's like the first time I did a checkout using git well, perhaps not that much, but close. Seeing the real nam

Success in your activities - please help our site - пожалуйста, помогите нашему сайту - будь ласка, допоможіть нашому сайту http://wellness-hotels.pp.ua/

2015-12-09 Thread wellnesshotels . co
Success in your activities good day, ask at the top of any page click once on the banner, so that we could pay for hosting our site, Thank you wellnesshotels...@gmail.com http://wellness-hotels.pp.ua/ добрий день, просимо на будь-якій сторінці вгорі один раз натиснути на рекламний банер, щоб ми

Re: [PATCH 2/1] stash: recognize "--help" for subcommands

2015-11-01 Thread Vincent Legoll
On Wed, May 20, 2015 at 8:17 PM, Jeff King wrote: > On Wed, May 20, 2015 at 02:01:32PM -0400, Jeff King wrote: > >> This takes away the immediate pain. We may also want to >> teach "--help" to the option. I guess we cannot do better >> than just having it run

git worktree help inconsistent

2015-10-17 Thread 乙酸鋰
Using git 2.6.1 In git command line usage, Please mark optional, the man page is correct. $ git worktree add usage: git worktree add [] or: git worktree prune [] -f, --force checkout even if already checked out in other worktree -bcreate a new branch -B

[PATCH 31/68] help: drop prepend function in favor of xstrfmt

2015-09-24 Thread Jeff King
This function predates xstrfmt, and its functionality is a subset. Let's just use xstrfmt. Signed-off-by: Jeff King --- builtin/help.c | 14 ++ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/builtin/help.c b/builtin/help.c index 3422e73..fba8c01 100644 --- a/builtin/h

[PATCH 59/68] help: clean up kfmclient munging

2015-09-24 Thread Jeff King
When we are going to launch "/path/to/konqueror", we instead rewrite this into "/path/to/kfmclient" by duplicating the original string and writing over the ending bits. This can be done more obviously with strip_suffix and xstrfmt. Note that we also fix a subtle bug with the "filename" parameter,

[PATCH 58/67] help: clean up kfmclient munging

2015-09-15 Thread Jeff King
When we are going to launch "/path/to/konqueror", we instead rewrite this into "/path/to/kfmclient" by duplicating the original string and writing over the ending bits. This can be done more obviously with strip_suffix and xstrfmt. Note that we also fix a subtle bug with the "filename" parameter,

[PATCH 31/67] help: drop prepend function in favor of xstrfmt

2015-09-15 Thread Jeff King
This function predates xstrfmt, and its functionality is a subset. Let's just use xstrfmt. Signed-off-by: Jeff King --- builtin/help.c | 14 ++ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/builtin/help.c b/builtin/help.c index 3422e73..fba8c01 100644 --- a/builtin/h

[PATCHv3 0/2] 'git config --names-only' to help the completion script

2015-08-10 Thread SZEDER Gábor
This is a reroll of 'sg/config-name-only'. * Instead of the two new listing options of the previous round add one new option '--names-only' to modify the output of '--list' and '--get-regexp' options, as suggested in previous discussions. * Reorganized the commit messages: don't go int

[PATCH v11 02/10] Documentation/bisect: move getting help section to the end

2015-06-29 Thread Matthieu Moy
-bisect.txt @@ -31,12 +31,6 @@ This command uses 'git rev-list --bisect' to help drive the binary search process to find which change introduced a bug, given an old "good" commit object name and a later "bad" commit object name. -Getting help - - -Use &qu

[PATCH v10 2/7] Documentation/bisect: move getting help section to the end

2015-06-26 Thread Matthieu Moy
-bisect.txt @@ -31,12 +31,6 @@ This command uses 'git rev-list --bisect' to help drive the binary search process to find which change introduced a bug, given an old "good" commit object name and a later "bad" commit object name. -Getting help - - -Use &qu

Re: Need some help on patching buildin-files // was: Looking for feedback and help with a git-mirror for local usage

2015-06-14 Thread David Aguilar
On Fri, Jun 12, 2015 at 12:52:44PM +0200, Bernd Naumann wrote: > Hello again, > > After digging the code I may have got a clue where to start but I > would still appreciate some help from a developer, cause I have never > learned to write C. (Some basics at school which happened

Re: Need some help on patching buildin-files // was: Looking for feedback and help with a git-mirror for local usage

2015-06-12 Thread Bernd Naumann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello again, After digging the code I may have got a clue where to start but I would still appreciate some help from a developer, cause I have never learned to write C. (Some basics at school which happened over a decade ago.) Currently I have

Looking for feedback and help with a git-mirror for local usage

2015-06-11 Thread Bernd Naumann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, I have came up with an idea # Yep I know, exactly that kind of e-mail everyone wants to read ;) and I'm working currently on a shell-prototype to face the following situation and problem and need some feedback/advise: I often build in example

Re: [PATCH v11 5/5] help: respect new common command grouping

2015-05-25 Thread Sébastien Guimmara
On 05/21/2015 08:04 PM, Eric Sunshine wrote: On Thu, May 21, 2015 at 1:39 PM, Sébastien Guimmara wrote: 'git help' shows common commands in alphabetical order: The most commonly used git commands are: addAdd file contents to the index bisect Find by binary

Re: [PATCH v11 5/5] help: respect new common command grouping

2015-05-21 Thread Eric Sunshine
On Thu, May 21, 2015 at 1:39 PM, Sébastien Guimmara wrote: > 'git help' shows common commands in alphabetical order: > > The most commonly used git commands are: >addAdd file contents to the index >bisect Find by binary search the change that int

[PATCH v11 5/5] help: respect new common command grouping

2015-05-21 Thread Sébastien Guimmara
'git help' shows common commands in alphabetical order: The most commonly used git commands are: addAdd file contents to the index bisect Find by binary search the change that introduced a bug branch List, create, or delete branches checkout Checkout a

Re: [PATCH v10 5/5] help: respect new common command grouping

2015-05-21 Thread Junio C Hamano
Eric Sunshine writes: > Hmm, but is it necessary to explain the group labels in the first > place? The help output (group labels and all) seems self-explanatory > already, and one would expect (hope) that readers are intelligent > enough to understand implicitly that the group

Re: [PATCH v10 5/5] help: respect new common command grouping

2015-05-21 Thread Eric Sunshine
>> substance. > > FWIW I view the latter half of that sentence as explaining the group > labels which we did not have (so we did not have to mention in the > original). Hmm, but is it necessary to explain the group labels in the first place? The help output (group labels an

Re: [PATCH v10 5/5] help: respect new common command grouping

2015-05-21 Thread Junio C Hamano
Eric Sunshine writes: >> + >> + puts(_("These are common Git commands used in various situations:")); > > The clause "in various situations" is quite nebulous and thus adds no > substance. FWIW I view the latter half of that sentence as explaining the group labels which we did not have (so

Re: [PATCH v10 5/5] help: respect new common command grouping

2015-05-21 Thread Eric Sunshine
On Thu, May 21, 2015 at 9:13 AM, Sébastien Guimmara wrote: > 'git help' shows common commands in alphabetical order: > [...] > without any indication of how commands relate to high-level > concepts or each other. Revise the output to explain their relationship > with

[PATCH v10 5/5] help: respect new common command grouping

2015-05-21 Thread Sébastien Guimmara
'git help' shows common commands in alphabetical order: The most commonly used git commands are: addAdd file contents to the index bisect Find by binary search the change that introduced a bug branch List, create, or delete branches checkout Checkout a

Re: [PATCH v9 5/5] help: respect new common command grouping

2015-05-20 Thread Sébastien Guimmara
On 05/20/2015 11:39 PM, Ramsay Jones wrote: On 20/05/15 20:23, Sébastien Guimmara wrote: Helped-by: Eric Sunshine Signed-off-by: Ramsay Jones This should be (at most) 'Helped-by:' - my 'contribution' was so minor that even a 'Helped-by:' is generous! :-D ATB, Ramsay Jones Ha! I'm still n

Re: [PATCH v9 5/5] help: respect new common command grouping

2015-05-20 Thread Ramsay Jones
On 20/05/15 20:23, Sébastien Guimmara wrote: > 'git help' shows common commands in alphabetical order: > > The most commonly used git commands are: >addAdd file contents to the index >bisect Find by binary search the change that introduced a bug >

[PATCH v9 5/5] help: respect new common command grouping

2015-05-20 Thread Sébastien Guimmara
'git help' shows common commands in alphabetical order: The most commonly used git commands are: addAdd file contents to the index bisect Find by binary search the change that introduced a bug branch List, create, or delete branches checkout Checkout a

[PATCH 2/1] stash: recognize "--help" for subcommands

2015-05-20 Thread Jeff King
On Wed, May 20, 2015 at 02:01:32PM -0400, Jeff King wrote: > This takes away the immediate pain. We may also want to > teach "--help" to the option. I guess we cannot do better > than just having it run "git help stash" in all cases (i.e., > we have no wa

[BUG, RFC] git stash drop --help

2015-05-20 Thread Vincent Legoll
Hello, I stumbled upon something that annoyed me a bit, as I was working with git stash to commit some big pile of modifications in small commits... I wanted to get help wrt "git stash drop" and did it the following way : [steps to reproduce] mkdir tmp cd tmp git init touch test.t

Re: [PATCH v8 5/5] help: respect new common command grouping

2015-05-18 Thread Junio C Hamano
Sébastien Guimmara writes: > 'git help' shows common commands in alphabetical order: > > The most commonly used git commands are: >addAdd file contents to the index >bisect Find by binary search the change that introduced a bug >branch

Re: [PATCH v7 0/5] git help: group common commands by theme

2015-05-15 Thread Junio C Hamano
Eric Sunshine writes: >> rebased on 'next' (a2776d4) > > Something to keep in mind for the future: It's usually easier to > manage preparatory cleanup patches by incorporating them into the > series which needs/wants them rather than posting them as separate > topics. That way, your patch series

Re: Help with Getting started to Contribute

2015-04-30 Thread Matthieu Moy
karthik nayak writes: > There is also Junio's Blog where he keeps a list of things to be done > > http://git-blame.blogspot.de/p/leftover-bits.html I'd add this: https://git.wiki.kernel.org/index.php/SmallProjectsIdeas -- Matthieu Moy http://www-verimag.imag.fr/~moy/ -- To unsubscribe from thi

Re: Help with Getting started to Contribute

2015-04-28 Thread karthik nayak
Hello Tummala, On 04/28/2015 07:15 PM, Tummala Dhanvi wrote: Hi , I would like to contribute to git. Can you guys point me to some useful resources to get me started to contribute to git. I suggest you go through the Documentation, especially "Documentation/CodingGuidelines" and "Documentat

Help with Getting started to Contribute

2015-04-28 Thread Tummala Dhanvi
Hi , I would like to contribute to git. Can you guys point me to some useful resources to get me started to contribute to git. Also does git have something like junior jobs so that It can be done by new to contribution. Also searching about the git in google points to some other organisation wh

Re: [PATCH] grep: correctly initialize help-all option

2015-04-10 Thread Patrick Steinhardt
+++ b/builtin/grep.c > >>> @@ -738,7 +738,7 @@ int cmd_grep(int argc, const char **argv, const char > >>> *prefix) > >>> PARSE_OPT_OPTARG, NULL, (intptr_t)default_pager > >>> }, > >>> OPT_BOOL(0, "ext-grep&

<    1   2   3   4   5   6   7   8   9   10   >