Re: Git ignore help

2015-03-24 Thread Junio C Hamano
a config variable and the user is made aware of the performance implications, I guess it would be ok. So it's back in my back log. How much does a config variable actually help? In a sense, one could argue that this is already an opt-in feature since it requires crafting gitignore in a particular

Re: Git ignore help

2015-03-23 Thread Duy Nguyen
On Sun, Mar 22, 2015 at 10:33 AM, Eric Sunshine sunsh...@sunshineco.com wrote: On Fri, Mar 20, 2015 at 6:36 AM, mdc...@seznam.cz wrote: I am trying to setup my git ignore (resp. .git/info/exclude) so that I exclude all directories and files except the content of directories that I

Re: Git ignore help

2015-03-23 Thread Eric Sunshine
On Mon, Mar 23, 2015 at 9:00 PM, Duy Nguyen pclo...@gmail.com wrote: On Sun, Mar 22, 2015 at 10:33 AM, Eric Sunshine sunsh...@sunshineco.com wrote: On Fri, Mar 20, 2015 at 6:36 AM, mdc...@seznam.cz wrote: Any idea what I am doing wrong? The fourth bullet point of the Pattern Format section

Re: [GSoC Project Help] Unifying git branch -l, git tag -l and git for-each-ref

2015-03-21 Thread karthik nayak
in the description of the idea. It would be great if someone could point me towards these patches which would help me when I start designing the details of the unified implementation. Thanks a lot for your time. Regards, R Sundararajan. [1] : http://marc.info/?l=gitm=142666740415816w=2 [2] : http

Re: Git ignore help

2015-03-21 Thread Eric Sunshine
On Fri, Mar 20, 2015 at 6:36 AM, mdc...@seznam.cz wrote: I am trying to setup my git ignore (resp. .git/info/exclude) so that I exclude all directories and files except the content of directories that I specifically include (incl. anything within them recursively). I set the

Git ignore help

2015-03-20 Thread mdconf
Hello, I am trying to setup my git ignore (resp. .git/info/exclude) so that I exclude all directories and files except the content of directories that I specifically include (incl. anything within them recursively). I set the .git/info/exclude with the following content: # Exclude

Re: [GSoC Project Help] Unifying git branch -l, git tag -l and git for-each-ref

2015-03-19 Thread Michael J Gruber
be great if someone could point me towards these patches which would help me when I start designing the details of the unified implementation. Thanks a lot for your time. Regards, R Sundararajan. [1] : http://marc.info/?l=gitm=142666740415816w=2 [2] : http://marc.info/?l=gitm

[GSoC Project Help] Unifying git branch -l, git tag -l and git for-each-ref

2015-03-19 Thread Sundararajan R
help me when I start designing the details of the unified implementation. Thanks a lot for your time. Regards, R Sundararajan. [1] : http://marc.info/?l=gitm=142666740415816w=2 [2] : http://marc.info/?l=gitm=142666773315899w=2 [3] : http://article.gmane.org/gmane.comp.version-control.git/264966N

Re: Need help deciding between subtree and submodule

2015-03-19 Thread Robert Dailey
it just feels like submodule would interfere and add more administration overhead on a day to day basis, affecting productivity. We do have policies around review etc. With submodules it does sometimes require engaging owners/reviewers from multiple repositories. Tools like Gerrit can help

Re: Need help deciding between subtree and submodule

2015-03-18 Thread Chris Packham
, affecting productivity. We do have policies around review etc. With submodules it does sometimes require engaging owners/reviewers from multiple repositories. Tools like Gerrit can help, particularly where multiple changes and reviewers are involved. Is there a third option here I'm missing? If only

Re: Need help deciding between subtree and submodule

2015-03-18 Thread Doug Kelly
to day basis, affecting productivity. We do have policies around review etc. With submodules it does sometimes require engaging owners/reviewers from multiple repositories. Tools like Gerrit can help, particularly where multiple changes and reviewers are involved. Conflicts are definitely going

Need help deciding between subtree and submodule

2015-03-17 Thread Robert Dailey
At my workplace, the team is using Atlassian Stash + git We have a Core library that is our common code between various projects. To avoid a single monolithic repository and to allow our apps and tools to be modularized into their own repos, I have considered moving Core to a subtree or

PLEASE HELP: Git for Yosemite 10.10.2

2015-03-09 Thread Siamak Nooraei
with Apple Yosemite 10.10.2. Please help. Thank you very much. Siamak. Sent from my iPhone-- 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: PLEASE HELP: Git for Yosemite 10.10.2

2015-03-09 Thread Thomas Ferris Nicolaisen
explaining how this works here, so please read [1] instead, or google for more updated answers (I don't have a Mac in front of me). I need to download a version of Git that is compatible with Apple Yosemite 10.10.2. Please help. Thank you very much. You should be able to use the version of Git

[GSoC microproject help] Allow - as a short-hand for @{-1} in more places

2015-03-06 Thread Sundararajan R
Hi All, I am a sophomore at Indian Institute of Technology Kanpur and am a GSoC aspirant for git. Although I have been using git from a long time, this is the first occasion when I have picked up reading its source code. Can somebody please help me by telling me how to start off with the above

Re: [GSoC microproject help] Allow - as a short-hand for @{-1} in more places

2015-03-06 Thread Junio C Hamano
Sundararajan R dyou...@gmail.com writes: Although I have been using git from a long time, this is the first occasion when I have picked up reading its source code. Can somebody please help me by telling me how to start off with the above mentioned microproject? A good place to start

Re: [GSoC microproject help] Allow - as a short-hand for @{-1} in more places

2015-03-06 Thread Akshay Aurora
at 1:35 AM, Sundararajan R dyou...@gmail.com wrote: Hi All, I am a sophomore at Indian Institute of Technology Kanpur and am a GSoC aspirant for git. Although I have been using git from a long time, this is the first occasion when I have picked up reading its source code. Can somebody please help

Re: [PATCH] grep: correct help string for --exclude-standard

2015-03-04 Thread Jeff King
On Fri, Feb 27, 2015 at 09:01:58PM +0700, Nguyễn Thái Ngọc Duy wrote: The current help string is about --no-exclude-standard. But git grep -h would show --exclude-standard instead. Flip the string. See 0a93fb8 (grep: teach --untracked and --exclude-standard options - 2011-09-27) for more info

Re: [PATCH] grep: correct help string for --exclude-standard

2015-03-04 Thread Duy Nguyen
On Wed, Mar 4, 2015 at 6:26 PM, Jeff King p...@peff.net wrote: It might be nice if parseopt had a PARSE_OPT_NEGHELP option or something to show the --no- form. Regardless, yes it would be nice to have something like this. I think there are places that can make use of this. Grepping

Re: [PATCH] grep: correct help string for --exclude-standard

2015-03-04 Thread Duy Nguyen
On Wed, Mar 4, 2015 at 5:16 PM, Jeff King p...@peff.net wrote: Hmm. If the default is --exclude-standard, then what expect people to use is --no-exclude-standard. Would it make more sense to list that in the -h output? I thought about it and actually edited git-grep man page to clarify the

Re: [PATCH] grep: correct help string for --exclude-standard

2015-03-04 Thread Jeff King
On Wed, Mar 04, 2015 at 06:13:32PM +0700, Duy Nguyen wrote: On Wed, Mar 4, 2015 at 5:16 PM, Jeff King p...@peff.net wrote: Hmm. If the default is --exclude-standard, then what expect people to use is --no-exclude-standard. Would it make more sense to list that in the -h output? I

[PATCH] grep: correct help string for --exclude-standard

2015-02-27 Thread Nguyễn Thái Ngọc Duy
The current help string is about --no-exclude-standard. But git grep -h would show --exclude-standard instead. Flip the string. See 0a93fb8 (grep: teach --untracked and --exclude-standard options - 2011-09-27) for more info about these options. Signed-off-by: Nguyễn Thái Ngọc Duy pclo

RE: Git Help needed

2014-10-21 Thread RaviKiranGoud_Palpanoori
it is easy to recompile if they have provided with the details. Could you please help us to provide additional details for compilation. Thanks in advance. Regards, Ravi. -Original Message- From: Ravi Kiran Goud Palpanoori Sent: Friday, August 01, 2014 5:03 PM To: 'brian m. carlson' Cc

Re: [PATCH] doc: fix 'git status --help' character quoting

2014-10-21 Thread Philip Oakley
and we do so for all HTML documents we generate, that would be a good change that is not limited to these places, though. I've generated a patch for the 'git status --help' that can act as a reference. (to follow) For me it's only those pages that have a lone zero that cause problems due to lack

Re: Git Help needed

2014-10-21 Thread brian m. carlson
to be used to recompile, what parameter settings they need to do, etc. IBM team told it is easy to recompile if they have provided with the details. Could you please help us to provide additional details for compilation. Thanks in advance. I don't have any more information than this, but I

Re: [PATCH] doc: fix 'git status --help' character quoting

2014-10-20 Thread Philip Oakley
From: Junio C Hamano gits...@pobox.com Philip Oakley philipoak...@iee.org writes: Correct backtick quoting for some of the modification states to give consistent web rendering. This is to match the way how XY PATH1 - PATH2 is typeset, I presume. Some in the body text are already `XY` to

Re: [PATCH] doc: fix 'git status --help' character quoting

2014-10-20 Thread Philip Oakley
From: Philip Oakley philipoak...@iee.org From: Junio C Hamano gits...@pobox.com Philip Oakley philipoak...@iee.org writes: .. While at it, use 00 for ASCII NUL to avoid any confusion with the letter O. (remember its quotation is consumed by ascidoc) looked too much like an I

Re: [PATCH] doc: fix 'git status --help' character quoting

2014-10-20 Thread Junio C Hamano
Philip Oakley philipoak...@iee.org writes: From: Junio C Hamano gits...@pobox.com Philip Oakley philipoak...@iee.org writes: Correct backtick quoting for some of the modification states to give consistent web rendering. This is to match the way how XY PATH1 - PATH2 is typeset, I presume.

Re: [PATCH] doc: fix 'git status --help' character quoting

2014-10-20 Thread Philip Oakley
: -- Philip -8 commit 51ec35a196057eae60bb9285c38fb22e49aae1b0 Author: Philip Oakley philipoak...@iee.org Date: Mon Oct 20 20:21:56 2014 +0100 doc: 'git status' quote the zero (NUL) character Newer web rendering of 'git status --help --web' shows the zero in NUL (ASCII 0

Re: [PATCH] doc: fix 'git status --help' character quoting

2014-10-20 Thread Junio C Hamano
Philip Oakley philipoak...@iee.org writes: From: Junio C Hamano gits...@pobox.com ... I think it is just the font. I just opened the above page with Chrome and futzed the text from '0' to '0123456789' to see how it look. That round thing is consistent with how other digits are rendered.

Re: [PATCH] doc: fix 'git status --help' character quoting

2014-10-20 Thread Junio C Hamano
Junio C Hamano gits...@pobox.com writes: Philip Oakley philipoak...@iee.org writes: From: Junio C Hamano gits...@pobox.com ... I think it is just the font. I just opened the above page with Chrome and futzed the text from '0' to '0123456789' to see how it look. That round thing is

[PATCH] doc: fix 'git status --help' character quoting

2014-10-19 Thread Philip Oakley
Correct backtick quoting for some of the modification states to give consistent web rendering. While at it, use 00 for ASCII NUL to avoid any confusion with the letter O. Signed-off-by: Philip Oakley philipoak...@iee.org --- Noticed when reviewing a stackoverflow problem where the OP actually

Re: [PATCH] doc: fix 'git status --help' character quoting

2014-10-19 Thread Junio C Hamano
Philip Oakley philipoak...@iee.org writes: Correct backtick quoting for some of the modification states to give consistent web rendering. This is to match the way how XY PATH1 - PATH2 is typeset, I presume. Some in the body text are already `XY` to match, but some others are not, and you are

Re: [PATCH v3 2/3] mergetool: don't require a work tree for --tool-help

2014-10-15 Thread David Aguilar
=tool] [--tool-help] [-y|--no-prompt|--prompt] [file to merge] ...' SUBDIRECTORY_OK=Yes +NONGIT_OK=Yes OPTIONS_SPEC= TOOL_MODE=merge . git-sh-setup . git-mergetool--lib -require_work_tree # Returns true if the mode reflects a symlink is_symlink () { @@ -378,6 +378,9

Re: [PATCH v3 2/3] mergetool: don't require a work tree for --tool-help

2014-10-15 Thread David Aguilar
-mergetool.sh +++ b/git-mergetool.sh @@ -10,11 +10,11 @@ USAGE='[--tool=tool] [--tool-help] [-y|--no-prompt|--prompt] [file to merge] ...' SUBDIRECTORY_OK=Yes +NONGIT_OK=Yes OPTIONS_SPEC= TOOL_MODE=merge . git-sh-setup . git-mergetool--lib -require_work_tree

[PATCH] mergetools/meld: do not rely on the output of `meld --help`

2014-10-15 Thread David Aguilar
We cannot rely on the output of `meld --help` when determining whether or not meld understands the --output option. Newer versions of meld print a generic help message that does not mention --output even though it is supported. Add a mergetool.meld.compat variable to enable the historical

Re: [PATCH] mergetools/meld: do not rely on the output of `meld --help`

2014-10-15 Thread Junio C Hamano
David Aguilar dav...@gmail.com writes: We cannot rely on the output of `meld --help` when determining whether or not meld understands the --output option. Newer versions of meld print a generic help message that does not mention --output even though it is supported. This obviously breaks

Re: [PATCH] mergetools/meld: do not rely on the output of `meld --help`

2014-10-15 Thread Junio C Hamano
Junio C Hamano gits...@pobox.com writes: This obviously breaks those who have happily been using their installed version of meld that understands and shows --output in the help text. Is that a minority that is rapidly diminishing? I would understand it if the change were

Re: [PATCH v3 2/3] mergetool: don't require a work tree for --tool-help

2014-10-13 Thread Junio C Hamano
changed, 4 insertions(+), 1 deletion(-) diff --git a/git-mergetool.sh b/git-mergetool.sh index 96a61ba..cddb533 100755 --- a/git-mergetool.sh +++ b/git-mergetool.sh @@ -10,11 +10,11 @@ USAGE='[--tool=tool] [--tool-help] [-y|--no-prompt|--prompt] [file to merge] ...' SUBDIRECTORY_OK

Re: [PATCH v2 1/2] mergetool: don't require a work tree for --tool-help

2014-10-11 Thread David Aguilar
On Fri, Oct 10, 2014 at 10:01:57AM +0100, Charles Bailey wrote: On 10 Oct 2014, at 09:51, David Aguilar dav...@gmail.com wrote: Changes since v1: NONGIT_OK=Yes was added to make it actually work outside of a git repo. Does this actually work? The reason that I haven't got around to

Re: [PATCH v2 1/2] mergetool: don't require a work tree for --tool-help

2014-10-11 Thread Charles Bailey
On 11 Oct 2014, at 09:29, David Aguilar dav...@gmail.com wrote: Thanks for the heads-up. I tested mergetool and it seems fine but indeed there's an `if test -e $GIT_DIR/MERGE_RR` in there that is surely not working as intended. One solution would be to move the work done in the test

[PATCH v3 2/3] mergetool: don't require a work tree for --tool-help

2014-10-11 Thread David Aguilar
--git a/git-mergetool.sh b/git-mergetool.sh index 96a61ba..cddb533 100755 --- a/git-mergetool.sh +++ b/git-mergetool.sh @@ -10,11 +10,11 @@ USAGE='[--tool=tool] [--tool-help] [-y|--no-prompt|--prompt] [file to merge] ...' SUBDIRECTORY_OK=Yes +NONGIT_OK=Yes OPTIONS_SPEC= TOOL_MODE=merge . git

Re: [PATCH v4 0/3] Make 'git help everyday' work

2014-10-11 Thread Philip Oakley
From: Junio C Hamano gits...@pobox.com Thanks. Looked alright from a cursory read; I tweaked s/10/-10/ where you gave examples of limiting output from git log before queuing. That was my mis-reading. I'd even noticed that it looked 'different' but just didn't see the leading '-' when checking

[PATCH v2 1/2] mergetool: don't require a work tree for --tool-help

2014-10-10 Thread David Aguilar
(+), 1 deletion(-) diff --git a/git-mergetool.sh b/git-mergetool.sh index 96a61ba..a502430 100755 --- a/git-mergetool.sh +++ b/git-mergetool.sh @@ -10,11 +10,11 @@ USAGE='[--tool=tool] [--tool-help] [-y|--no-prompt|--prompt] [file to merge] ...' SUBDIRECTORY_OK=Yes +NONGIT_OK=Yes OPTIONS_SPEC

Re: [PATCH v2 1/2] mergetool: don't require a work tree for --tool-help

2014-10-10 Thread Charles Bailey
On 10 Oct 2014, at 09:51, David Aguilar dav...@gmail.com wrote: Changes since v1: NONGIT_OK=Yes was added to make it actually work outside of a git repo. Does this actually work? The reason that I haven't got around to resending my re-roll is that I found that I needed changes to

[PATCH v4 3/3] Make 'git help everyday' work

2014-10-10 Thread Philip Oakley
The Everyday GIT With 20 Commands Or So is not accessible via the Git help system. Move everyday.txt to giteveryday.txt so that git help everyday works, and create a new placeholder file everyday.html to refer people who follow existing URLs to the updated location. giteveryday.txt now formats

[PATCH v4 0/3] Make 'git help everyday' work

2014-10-10 Thread Philip Oakley
=2005-12-10`, etc. s/--max-count=//; perhaps? I've shown both in the update, as it's a help guide. How does it look? @@ -131,27 +145,34 @@ Clone the upstream and work on it. Feed changes to upstream.:: $ git clone git://git.kernel.org/pub/scm/.../torvalds/linux-2.6 my2.6

Re: [PATCH v4 0/3] Make 'git help everyday' work

2014-10-10 Thread Junio C Hamano
Thanks. Looked alright from a cursory read; I tweaked s/10/-10/ where you gave examples of limiting output from git log before queuing. -- 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

[PATCH v3 3/3] Make 'git help everyday' work

2014-09-29 Thread Philip Oakley
The Everyday GIT With 20 Commands Or So is not accessible via the Git help system. Move everyday.txt to giteveryday.txt so that git help everyday works, and create a new placeholder file everyday.html to refer people who follow existing URLs to the updated location. giteveryday.txt now formats

[PATCH v3 0/3] Make 'git help everyday' work

2014-09-29 Thread Philip Oakley
Here's version three of my patches to make 'git help everyday' work. It's taken awhile. Previous patches at [1] and [2]. Junio has provided guidance on modernisation of the text, which has been integrated into patch 1. Patch 2 regularises the OBSOLETE_HTML method in the make file, in line

Re: Please help provide clarity on git rebase internals

2014-09-19 Thread Fabian Ruch
Hi Colin, On 09/08/2014 01:25 PM, Colin Yates wrote: My understanding is that rebasing branch B onto branch A unrolls all of branch B's commits and then reduces them onto the HEAD of branch A. For example, I took featureA branch from develop three days ago. develop subsequently had commits

Re: [PATCH] help: Fix size passed to qsort

2014-09-18 Thread Junio C Hamano
Stefan Beller stefanbel...@gmail.com writes: We actually want to have the size of one 'name' and not the size of the names array. I suspect that the latter is size of a pointer that points at a cmdname structure, but the original code in help_unknown_cmd() is wrong. The ones in

Re: [PATCH] help: Fix size passed to qsort

2014-09-18 Thread Junio C Hamano
Junio C Hamano gits...@pobox.com writes: Stefan Beller stefanbel...@gmail.com writes: We actually want to have the size of one 'name' and not the size of the names array. ... I suspect that the latter is size of a pointer that points at a cmdname structure, but the original code in

[PATCH] help: Fix size passed to qsort

2014-09-17 Thread Stefan Beller
We actually want to have the size of one 'name' and not the size of the names array. Signed-off-by: Stefan Beller stefanbel...@gmail.com --- help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help.c b/help.c index 7af65e2..2072a87 100644 --- a/help.c +++ b/help.c @@

Re: [PATCH] help: ensure that common-cmds.h is only included by help.c

2014-09-14 Thread David Aguilar
On Sat, Sep 13, 2014 at 10:23:03PM -0700, Junio C Hamano wrote: On Sat, Sep 13, 2014 at 7:00 PM, Perry Hutchison per...@pluto.rain.com wrote: David Aguilar dav...@gmail.com wrote: Add a #ifndef guard to ensure that common-cmds.h can only be included by help.c. This strikes me as a

Re: [PATCH] help: ensure that common-cmds.h is only included by help.c

2014-09-14 Thread Perry Hutchison
Junio C Hamano gits...@pobox.com wrote: On Sat, Sep 13, 2014 at 7:00 PM, Perry Hutchison per...@pluto.rain.com wrote: David Aguilar dav...@gmail.com wrote: Add a #ifndef guard to ensure that common-cmds.h can only be included by help.c. ... If these definitions are intended to be

Re: [PATCH] help: ensure that common-cmds.h is only included by help.c

2014-09-14 Thread David Aguilar
On Sun, Sep 14, 2014 at 12:55:41AM -0700, Perry Hutchison wrote: Junio C Hamano gits...@pobox.com wrote: On Sat, Sep 13, 2014 at 7:00 PM, Perry Hutchison per...@pluto.rain.com wrote: David Aguilar dav...@gmail.com wrote: Add a #ifndef guard to ensure that common-cmds.h can only be

[PATCH] help: ensure that common-cmds.h is only included by help.c

2014-09-13 Thread David Aguilar
cmdname_help { char name[16]; char help[80]; diff --git a/help.c b/help.c index 7af65e2..abf1689 100644 --- a/help.c +++ b/help.c @@ -3,11 +3,12 @@ #include exec_cmd.h #include levenshtein.h #include help.h -#include common-cmds.h #include string-list.h #include column.h #include

Re: [PATCH] help: ensure that common-cmds.h is only included by help.c

2014-09-13 Thread Perry Hutchison
David Aguilar dav...@gmail.com wrote: Add a #ifndef guard to ensure that common-cmds.h can only be included by help.c. This strikes me as a very peculiar, and sub-optimal, way of achieving the purpose. If these definitions are intended to be private to help.c, why not put them there and

Re: [PATCH] help: ensure that common-cmds.h is only included by help.c

2014-09-13 Thread Junio C Hamano
On Sat, Sep 13, 2014 at 7:00 PM, Perry Hutchison per...@pluto.rain.com wrote: David Aguilar dav...@gmail.com wrote: Add a #ifndef guard to ensure that common-cmds.h can only be included by help.c. This strikes me as a very peculiar, and sub-optimal, way of achieving the purpose. If these

Please help provide clarity on git rebase internals

2014-09-08 Thread Colin Yates
Hi all, TLDR; I am seeing merge conflicts when rebasing even though applying them to HEAD of target branch should work. Can you please upgrade my understanding so I understand. My understanding is that rebasing branch B onto branch A unrolls all of branch B's commits and then reduces them onto

Re: Please help provide clarity on git rebase internals

2014-09-08 Thread Johannes Sixt
Am 08.09.2014 13:25, schrieb Colin Yates: For example, let's imagine that #f1 removed fileA, some time later #d1 Assumption: #d1 is in the branch you call develop HEAD. added a line to that file. If I was doing a merge then of course this should be a conflict, however applying #f1 to develop

Help improving the future of debugging

2014-08-25 Thread Benjamin Siegmund
. To find this out, we are conducting an Online Survey for Software Developers. From the results we expect new insights into debugging practice that help us to suggest new directions for future research. So if you are a software developer or know any software developers, you can really help us

Git Help needed

2014-08-01 Thread RaviKiranGoud_Palpanoori
Hi, I am writing below couple of questions. If it is not the right place to ask please ignore and suggest me what to do to get the help on these questions. 1) What version of SSL is supported by GIT 1.8.3 or GIT 1.9.0 2) I have installed git 1.8.3 in AIX server 6.1 TL8 SP2. It worked fine

Re: Git Help needed

2014-08-01 Thread Ronnie Sahlberg
of questions. If it is not the right place to ask please ignore and suggest me what to do to get the help on these questions. 1) What version of SSL is supported by GIT 1.8.3 or GIT 1.9.0 2) I have installed git 1.8.3 in AIX server 6.1 TL8 SP2. It worked fine and able to extract code from git

Re: Git Help needed

2014-08-01 Thread brian m. carlson
On Fri, Aug 01, 2014 at 07:30:11PM +, ravikirangoud_palpano...@vfc.com wrote: Hi, I am writing below couple of questions. If it is not the right place to ask please ignore and suggest me what to do to get the help on these questions. 1) What version of SSL is supported by GIT 1.8.3

RE: Git Help needed

2014-08-01 Thread RaviKiranGoud_Palpanoori
Subject: Re: Git Help needed This looks more like a packaging/build issue than a git issue. It looks like whomever built your version of git built it against a specific version of the OpenSSL library. You should probably contact the folks that built your binary and ask them to update and build

RE: Git Help needed

2014-08-01 Thread RaviKiranGoud_Palpanoori
, August 01, 2014 4:05 PM To: Ravi Kiran Goud Palpanoori Cc: git@vger.kernel.org Subject: Re: Git Help needed On Fri, Aug 01, 2014 at 07:30:11PM +, ravikirangoud_palpano...@vfc.com wrote: Hi, I am writing below couple of questions. If it is not the right place to ask please ignore

Re: Git Help needed

2014-08-01 Thread brian m. carlson
On Fri, Aug 01, 2014 at 08:27:24PM +, ravikirangoud_palpano...@vfc.com wrote: Hi brian, Thanks for your quick reply. I downloaded git 1.9.0 from the site https://code.google.com/p/git-core/downloads/list. That URL is obsolete. Try https://www.kernel.org/pub/software/scm/git/ Google

RE: Git Help needed

2014-08-01 Thread RaviKiranGoud_Palpanoori
Help needed On Fri, Aug 01, 2014 at 08:27:24PM +, ravikirangoud_palpano...@vfc.com wrote: Hi brian, Thanks for your quick reply. I downloaded git 1.9.0 from the site https://code.google.com/p/git-core/downloads/list. That URL is obsolete. Try https://www.kernel.org/pub/software/scm/git

[PATCH 1/2] mergetool: don't require a work tree for --tool-help

2014-07-19 Thread Charles Bailey
From: Charles Bailey cbaile...@bloomberg.net Signed-off-by: Charles Bailey cbaile...@bloomberg.net --- You can call git difftool --tool-help outside of a work tree but not mergetool --tool-help but there's not real reason for this restriction and it can be easily relaxed by deferring

[PATCH v4] linuxptp: add phc_ctl program to help debug PHC devices

2014-07-10 Thread Jacob Keller
to syslog. By default messages will be sent. +.TP +.BI \-Q +Do not print messages to standard output. By default messages will be printed. +.TP +.BI \-h +Display a help message. +.TP +.B \-v +Prints the software version and exits. + +.SH COMMANDS + +.B phc_ctl +is controlled by passing commands which

Re: [PATCH v4] linuxptp: add phc_ctl program to help debug PHC devices

2014-07-10 Thread Junio C Hamano
Jacob Keller jacob.e.kel...@intel.com writes: This is an updated version of a script I wrote a couple years ago for I suspect that this is not for us ;-) -- 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

Re: [PATCH v4] linuxptp: add phc_ctl program to help debug PHC devices

2014-07-10 Thread Keller, Jacob E
On Thu, 2014-07-10 at 16:20 -0700, Junio C Hamano wrote: Jacob Keller jacob.e.kel...@intel.com writes: This is an updated version of a script I wrote a couple years ago for I suspect that this is not for us ;-) -- To unsubscribe from this list: send the line unsubscribe git in the body

Help with subtree pull / push

2014-05-27 Thread nicofari64
. Merge the remote changes (e.g. 'git pull') hint: before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details. Obviously I have already made the pull command (as suggested in the message) and it says to me that everything is up to date. On SO there is the very same

[PATCH v4 2/2] log: add --show-linear-break to help see non-linear history

2014-03-25 Thread Nguyễn Thái Ngọc Duy
Option explanation is in rev-list-options.txt. The interaction with -z is left undecided. Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- On Fri, Mar 21, 2014 at 2:15 AM, Junio C Hamano gits...@pobox.com wrote: * Get rid of saved_linear, use another flag in struct object instead

Re: [PATCH v4 2/2] log: add --show-linear-break to help see non-linear history

2014-03-25 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy pclo...@gmail.com writes: Option explanation is in rev-list-options.txt. The interaction with -z is left undecided. Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- On Fri, Mar 21, 2014 at 2:15 AM, Junio C Hamano gits...@pobox.com wrote: * Get rid of

Re: [PATCH v3 2/2] log: add --show-linear-break to help see non-linear history

2014-03-20 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy pclo...@gmail.com writes: Option explanation is in rev-list-options.txt. The interaction with -z is left undecided. Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- Thanks. * Revert back to the old option name --show-linear-break * Get rid of

Re: [PATCH v3 2/2] log: add --show-linear-break to help see non-linear history

2014-03-20 Thread Duy Nguyen
On Fri, Mar 21, 2014 at 2:15 AM, Junio C Hamano gits...@pobox.com wrote: * Get rid of saved_linear, use another flag in struct object instead I cannot offhand say if I like this change or not. A flag bit is a scarce and limited resource; commit slabs felt more suited for implementation of

[PATCH v3 2/2] log: add --show-linear-break to help see non-linear history

2014-03-19 Thread Nguyễn Thái Ngọc Duy
Option explanation is in rev-list-options.txt. The interaction with -z is left undecided. Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- * Revert back to the old option name --show-linear-break * Get rid of saved_linear, use another flag in struct object instead * Fix not showing

[PATCH v2] log: add --nonlinear-barrier to help see non-linear history

2014-03-17 Thread Nguyễn Thái Ngọc Duy
Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- v2 renames the option name to --nonlinear-barrier and fixes using it with --dense. Best used with --no-merges to see patch series. Documentation/rev-list-options.txt | 7 ++ log-tree.c | 4 +++ revision.c

Re: [PATCH v2] log: add --nonlinear-barrier to help see non-linear history

2014-03-17 Thread Eric Sunshine
On Mon, Mar 17, 2014 at 8:51 AM, Nguyễn Thái Ngọc Duy pclo...@gmail.com wrote: Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- v2 renames the option name to --nonlinear-barrier and fixes using it with --dense. Best used with --no-merges to see patch series.

Re: [PATCH v2] log: add --nonlinear-barrier to help see non-linear history

2014-03-17 Thread Junio C Hamano
wondered if the saved-parents slab we already have can be easily reused for this, but it probably would not help. I do not quite understand the if we do not have previous parents bit, though. Is it meant to trigger only at the very beginning? Thanks. -- To unsubscribe from this list: send the line

Help needed: Tests failed While replacing char array with strbuf in bulk-checkin.c

2014-03-03 Thread saikrishna.sripada
please help me with the memory allacation and strbuf_release() Thanks, --sai krishna -- 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: Help needed: Tests failed While replacing char array with strbuf in bulk-checkin.c

2014-03-03 Thread Eric Sunshine
+0xed)[0x2b5f3b4e376d] /home/saikrishna/Desktop/libcloud-0.14.1/sai/git/git[0x405109] Can some one please help me with the memory allacation and strbuf_release() Read the microproject text carefully and _fully_. It provides the clue you need to understand the problem. Rewrite bulk

Re: [PATCH] help: include list of aliases in git-help --all

2014-02-25 Thread Junio C Hamano
Joel Nothman joel.noth...@gmail.com writes: Git help --all had listed all git commands, but no configured aliases. This includes aliases as a separate listing, after commands in the main git directory and other $PATH directories. ... and why is this a good thing? Signed-off-by: Joel

Re: [PATCH] help: include list of aliases in git-help --all

2014-02-25 Thread Joel Nothman
On 26 February 2014 06:15, Junio C Hamano gits...@pobox.com wrote: Joel Nothman joel.noth...@gmail.com writes: Git help --all had listed all git commands, but no configured aliases. This includes aliases as a separate listing, after commands in the main git directory and other $PATH

Re: [PATCH] help: include list of aliases in git-help --all

2014-02-25 Thread Junio C Hamano
Joel Nothman joel.noth...@gmail.com writes: arguments to git help. They are also like commands in that it is possible to forget their name, or whether they are defined on a particular workstation, and to hence want a listing. I did envision that it would be useful for the last case

Re: [PATCH] help: include list of aliases in git-help --all

2014-02-25 Thread Joel Nothman
On 26 February 2014 08:51, Junio C Hamano gits...@pobox.com wrote: Joel Nothman joel.noth...@gmail.com writes: arguments to git help. They are also like commands in that it is possible to forget their name, or whether they are defined on a particular workstation, and to hence want a listing

Re: [PATCH] help: include list of aliases in git-help --all

2014-02-25 Thread Philip Oakley
From: Joel Nothman joel.noth...@gmail.com On 26 February 2014 06:15, Junio C Hamano gits...@pobox.com wrote: Joel Nothman joel.noth...@gmail.com writes: Git help --all had listed all git commands, but no configured aliases. This includes aliases as a separate listing, after commands

Re: [PATCH] help: include list of aliases in git-help --all

2014-02-25 Thread Junio C Hamano
Joel Nothman joel.noth...@gmail.com writes: Git help --all had listed all git commands, but no configured aliases. This includes aliases as a separate listing, after commands in the main git directory and other $PATH directories. Signed-off-by: Joel Nothman joel.nothman at gmail.com

[PATCH] help: include list of aliases in git-help --all

2014-02-24 Thread Joel Nothman
Git help --all had listed all git commands, but no configured aliases. This includes aliases as a separate listing, after commands in the main git directory and other $PATH directories. Signed-off-by: Joel Nothman joel.nothman at gmail.com --- Documentation/git-help.txt | 4 +-- builtin/help.c

Re: [PATCH] Provide a 'git help user-manual' route to the docbook

2014-02-18 Thread Junio C Hamano
+ +gituser-manual - a link to the user-manual docbook + + +SYNOPSIS + +[verse] +'git help user-manual' + +link:user-manual.html[Git User's Manual] Is it just me, or is typing $ git help user-manual and not seeing the manual itself, but only a link you have to click

Re: [PATCH] Provide a 'git help user-manual' route to the docbook

2014-02-18 Thread Philip Oakley
(7) += + +NAME + +gituser-manual - a link to the user-manual docbook + + +SYNOPSIS + +[verse] +'git help user-manual' + +link:user-manual.html[Git User's Manual] Is it just me, or is typing $ git help user-manual and not seeing the manual itself, but only a link you

[PATCH] Provide a 'git help user-manual' route to the docbook

2014-02-15 Thread Philip Oakley
@@ +gituser-manual(7) += + +NAME + +gituser-manual - a link to the user-manual docbook + + +SYNOPSIS + +[verse] +'git help user-manual' + +link:user-manual.html[Git User's Manual] + +DESCRIPTION +--- +Git is a fast, scalable, distributed revision control system

[PATCH] log: add --show-linear-break to help see non-linear history

2014-02-08 Thread Nguyễn Thái Ngọc Duy
Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- This is a more serious attempt to make non-linear history more visible without --graph. It looks like this commit e4ddb05720710213108cd13ddd5a115e12a6211d Author: Andy Spencer andy753...@gmail.com

Re: [PATCH 0/6] Make 'git help everyday' work - relnotes

2014-01-22 Thread Philip Oakley
within the git(1) section it came from, and a new release-notes(7) man page. With that set up the Documentation/Makefile would generate the man pages, with their appropriate links, which can be accessed via the 'git help' command. The big 'however' was that this would not actually include

Re: [PATCH 0/6] Make 'git help everyday' work - relnotes

2014-01-21 Thread Philip Oakley
From: Stefan Näwe stefan.na...@atlas-elektronik.com Am 16.01.2014 22:14, schrieb Philip Oakley: From: Stefan Näwe stefan.na...@atlas-elektronik.com [...] I'd really like to see 'git help relnotes' working as well... Stefan Stefan, Were you thinking that all the release notes would

Re: [PATCH 0/6] Make 'git help everyday' work - relnotes

2014-01-21 Thread Junio C Hamano
Philip Oakley philipoak...@iee.org writes: Determining which is the current release note is possibly more problematic, which should be when making the documentation. Hmmm Why? You are already aware of the stale-notes section, no? Isn't the top one the latest? -- To unsubscribe from this

Re: [PATCH 0/6] Make 'git help everyday' work - relnotes

2014-01-21 Thread Philip Oakley
the latest? It's that the 'git help release-notes' would _include_ the latest release notes, not just link to them (which is what the stalenotes currently does). Or at least that was the idea. Trying to determine the latest version, and then include those release notes, and the subsequent

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