Re: [PATCH/RFC 0/7] Support for Ruby

2013-09-21 Thread brian m. carlson
a shame not to take advantage of what the language offers, especially since I know others are going to want to take advantage of the provided bindings. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA

Re: [PATCH/RFC 0/7] Support for Ruby

2013-09-21 Thread brian m. carlson
On Sat, Sep 21, 2013 at 05:52:05PM -0500, Felipe Contreras wrote: On Sat, Sep 21, 2013 at 4:29 PM, brian m. carlson sand...@crustytoothpaste.net wrote: As Junio has also pointed out in the past, there are people who aren't able to use Ruby in the same way that they are Perl and Python

Re: [PATCH/RFC 0/7] Support for Ruby

2013-09-22 Thread brian m. carlson
to be adding another language, then obviously the issue becomes moot. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description

Re: git rebase is confused about commits w/o textual changes (e.g. chmod's)

2013-09-27 Thread brian m. carlson
checkout test-base printf line 2\n example git add example git commit -m add line git checkout to-rebase git rebase test-base test -x example -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4

Re: [PATCH 6/9] http: update base URLs when we see redirects

2013-09-29 Thread brian m. carlson
/generte/generate/ from it). Furthermore, we need to feed the new base to the credential code, so that requests to credential helpers (or to the user) match the URL we will be requesting. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http

Re: git rebase is confused about commits w/o textual changes (e.g. chmod's)

2013-10-04 Thread brian m. carlson
correct, so the commit really is empty, even considering permissions. It looks like git is doing the right thing here. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B

GSS-Negotiate authentication requires that all data fit into postbuffer

2013-10-05 Thread brian m. carlson
as the buffer will have to be too large. An alternative is to send a small amount of data, smaller than the postbuffer, in the first chunk and only fail to rewind if the second or subsequent chunks need rewinding. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http

Re: GSS-Negotiate authentication requires that all data fit into postbuffer

2013-10-06 Thread brian m. carlson
On Sun, Oct 06, 2013 at 05:38:24PM +0200, Daniel Stenberg wrote: On Sun, 6 Oct 2013, brian m. carlson wrote: If there's a way to make Apache with mod_auth_kerb do that with curl, then it doesn't require a change to git, and I'm happy to make it on my end. But using the curl command line

Re: GSS-Negotiate authentication requires that all data fit into postbuffer

2013-10-07 Thread brian m. carlson
could respawn the process, but that would be a logistical nightmare and extremely inefficient for large transfers. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994

[PATCH 2/2] Update documentation for http.continue option

2013-10-08 Thread brian m. carlson
Explain the reason for and behavior of the new http.continue option, and that it is enabled by default. Furthermore, explain that it is required for large GSS-Negotiate requests but incompatible with some proxies. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- Documentation

[PATCH 1/2] http: add option to enable 100 Continue responses

2013-10-08 Thread brian m. carlson
to enabled, to control whether this header is sent. The addition of an option is necessary because some proxies break badly if sent this header. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- http.c| 6 ++ http.h| 1 + remote-curl.c | 7 ++- 3 files

[PATCH 0/2] HTTP GSS-Negotiate improvements

2013-10-08 Thread brian m. carlson
will be requested. My rationale for this is that modern versions of Squid, Apache, and nginx seem to do the right thing, as well as most non-proxy HTTP 1.1 implementations, and that we should optimize for functional, up-to-date software. HTTP 1.1 is 16 years old, after all. brian m. carlson (2): http: add

Re: [PATCH 1/2] http: add option to enable 100 Continue responses

2013-10-09 Thread brian m. carlson
-continue. I made libcurl dump all the headers it sends, and it doesn't send them in that case. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187

Re: [PATCH 1/2] http: add option to enable 100 Continue responses

2013-10-11 Thread brian m. carlson
dwarfs the overhead for the 100 continue, especially since you'll do it thrice (even though the session is usually reused). The efficient way to do push is SSH, where you can avoid making multiple connections and reuse the same encrypted connection at every stage. -- brian m. carlson / brian

[PATCH v2 1/2] http: add option to enable 100 Continue responses

2013-10-11 Thread brian m. carlson
to disabled, to control whether this header is sent. The addition of an option is necessary because some proxies break badly if sent this header. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- http.c| 6 ++ http.h| 1 + remote-curl.c | 7 ++- 3 files

[PATCH v2 2/2] Update documentation for http.continue option

2013-10-11 Thread brian m. carlson
Explain the reason for and behavior of the new http.continue option, and that it is disabled by default. Furthermore, explain that it is required for large GSS-Negotiate requests but incompatible with some proxies. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- Documentation

[PATCH v2 0/2] HTTP GSS-Negotiate improvements

2013-10-11 Thread brian m. carlson
This patch set adds an option, http.continue, to enable requests for 100 Continue responses when pushing over HTTP. This is needed for large pushes using GSS-Negotiate authentication. Changes from v1: * Default to disabled. brian m. carlson (2): http: add option to enable 100 Continue

Re: [PATCH v2 1/2] http: add option to enable 100 Continue responses

2013-10-11 Thread brian m. carlson
comment * delimiters on their own lines, like this. */ It wasn't clear from the existing code which way was being used, and the CodingGuidelines file didn't seem to cover it. I'll send a patch. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http

Re: [PATCH v2 2/2] Update documentation for http.continue option

2013-10-11 Thread brian m. carlson
On Fri, Oct 11, 2013 at 04:50:52PM -0700, Jonathan Nieder wrote: brian m. carlson wrote: +http.continue:: + Ensure that authentication succeeds before sending the pack data when + POSTing data using the smart HTTP transport. This is done by + requesting a 100 Continue response

[PATCH] CodingGuidelines: style for multi-line comments

2013-10-11 Thread brian m. carlson
The style for multi-line comments is often mentioned and should be documented for clarity. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- Documentation/CodingGuidelines | 8 1 file changed, 8 insertions(+) diff --git a/Documentation/CodingGuidelines b/Documentation

Re: Git send-email fail on Mac OS X Lion

2013-10-12 Thread brian m. carlson
, and then it will work. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Best practices on updating documentation?

2013-10-13 Thread brian m. carlson
If I'm going to be adding an option to a command, should I update the documentation in the same commit or in a separate commit? -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2

Re: [PATCH] rev-parse doc: clarify use of optional / required arguments

2013-10-14 Thread brian m. carlson
on it if you're interested, as I probably won't get around to finishing it for some time. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187

Re: [PATCH v2 2/2] Update documentation for http.continue option

2013-10-18 Thread brian m. carlson
On Sat, Oct 12, 2013 at 12:26:39AM +, brian m. carlson wrote: On Fri, Oct 11, 2013 at 04:50:52PM -0700, Jonathan Nieder wrote: Perhaps this should be conditional on the authentication method used, so affected people could still contact broken servers without having different

Re: [PATCH v2 2/2] Update documentation for http.continue option

2013-10-22 Thread brian m. carlson
about setting configuration options. I'll plan to do a revised patch along these lines later this week unless I hear some loud objections before then. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA

Re: [PATCH v2 2/2] Update documentation for http.continue option

2013-10-23 Thread brian m. carlson
. Is GSS-Negotiate the only special case? I believe so, because it's the only case where we don't have a password. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552

Re: [PATCH v2 2/2] Update documentation for http.continue option

2013-10-23 Thread brian m. carlson
that it only covers the case where it would otherwise fail. People who have broken proxies or broken servers and are using GSS-Negotiate (which, as I said, is probably very few people, if any) will simply have to increase the postbuffer size as before. -- brian m. carlson / brian with sandals: Houston

Re: [PATCH v2 2/2] Update documentation for http.continue option

2013-10-25 Thread brian m. carlson
to be useful. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

[PATCH v3] remote-curl: fix large pushes with GSSAPI

2013-10-26 Thread brian m. carlson
. Existing cases where pushes would succeed, including small requests using GSSAPI, still disable the use of 100 Continue, as it causes problems for some remote HTTP implementations (servers and proxies). Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- remote-curl.c | 11

[PATCH v4] remote-curl: fix large pushes with GSSAPI

2013-10-28 Thread brian m. carlson
. Existing cases where pushes would succeed, including small requests using GSSAPI, still disable the use of 100 Continue, as it causes problems for some remote HTTP implementations (servers and proxies). Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- remote-curl.c | 13

Re: [PATCH v4] remote-curl: fix large pushes with GSSAPI

2013-10-30 Thread brian m. carlson
patch, or if you'd like, I can split out the refactoring steps with a commit message for you. If you would split it out, that would be great. Then I'll simply rebase my patch on top of yours and go from there. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http

Re: [PATCH 3/3] remote-curl: fix large pushes with GSSAPI

2013-10-31 Thread brian m. carlson
On Thu, Oct 31, 2013 at 02:36:51AM -0400, Jeff King wrote: From: brian m. carlson sand...@crustytoothpaste.net Due to an interaction between the way libcurl handles GSSAPI authentication over HTTP and the way git uses libcurl, large pushes (those over http.postBuffer bytes) would fail due

Re: [PATCH] Documentation: add a script to generate a (long/short) options overview

2013-10-31 Thread brian m. carlson
believe. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Re: Question on merge order

2013-11-01 Thread brian m. carlson
changes here, since it doesn't consider them. In some cases, git can consider multiple common ancestors when using the default recursive strategy, but that doesn't apply here. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My

Re: [PATCH 1/8] cherry-pick, revert: add the --gpg-sign option

2013-11-03 Thread brian m. carlson
populate_options_cb and save_opts need to learn about this sequencer option so that after --continue, commits continue to get signed. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196

Re: [PATCH] cherry-pick, revert: add the --gpg-sign option

2013-11-03 Thread brian m. carlson
what I did when I was patching that particular area. Thanks for posting this patch set; it's something I've wanted for a while, but never got around to actually doing myself. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My

Re: [PATCH] Add the commit.gpgsign option to sign all commits

2013-11-04 Thread brian m. carlson
if a topic can be rebased to an older codebase, or something? Probably so, but you can use an agent so this happens automatically. It's not very useful for people who don't use an agent. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net

Re: error when git-diff get pipe args

2013-11-04 Thread brian m. carlson
of dereferencing them, as diff does. On Linux, /dev/fd is a symlink to /proc/self/fd, and the items in that directory are all symlinks. git diff is not generally intended to diff arbitrary files from arbitrary locations. For that, you want plain old diff, which works as you expect. -- brian m

Re: Problem while cloning a git repo

2013-11-12 Thread brian m. carlson
(to avoid the proxy)? -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Re: Problem while cloning a git repo

2013-11-13 Thread brian m. carlson
experiencing something that is dropping the connection over HTTP. So you either have a bad proxy, or something else is causing the connection to be dropped. Since it's only over HTTP, I suspect it's the former. Do you have HTTPS, and if so, does it work if you try to clone over that? -- brian m

Re: Add a bugzilla website

2013-11-15 Thread brian m. carlson
-based bug tracker. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Re: error: git-remote-https died of signal 13

2013-11-24 Thread brian m. carlson
to point to the proper version, so you always compile and link as you expect. The reason for this is that Debian cannot distribute GPLv2-only programs (like git) linked against OpenSSL, so GnuTLS becomes necessary. On Debian and Ubuntu, git is by default linked against libcurl3-gnutls. -- brian m

Re: Git merge: conflict is expected, but not detected

2013-11-29 Thread brian m. carlson
problem, but a three-way merge problem in general. If you rebase instead of merge, then the code ends up the way you want it, but this may or may not be appropriate for your workflow. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net

[PATCH] RelNotes: fix a typo in Negotiate.

2013-12-08 Thread brian m. carlson
Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- Documentation/RelNotes/1.9.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/RelNotes/1.9.txt b/Documentation/RelNotes/1.9.txt index 9debcc4..d5c99a9 100644 --- a/Documentation/RelNotes/1.9.txt

[PATCH] Documentation: document pitfalls with 3-way merge

2013-12-08 Thread brian m. carlson
. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- This is a documentation fix that I've been holding onto for a week or so. I noticed that a lot of people were surprised by this behavior, and figured it would be better to document it. I'm not sure that this is the right place

Re: Adding --gpg-sign to cherry-pick, revert, am, rebase

2013-12-08 Thread brian m. carlson
, master, or pu, and Junio's immediately-following What's cooking email didn't mention it. I'm really very interested in seeing it merged, so if there's something I can do to help it along, please let me know. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http

Re: [PATCH] Documentation: document pitfalls with 3-way merge

2013-12-08 Thread brian m. carlson
On Sun, Dec 08, 2013 at 02:40:13PM -0800, Jonathan Nieder wrote: brian m. carlson wrote: Oftentimes people will make the same change in two branches, revert the change in one branch, and then be surprised when a merge reinstitutes that change when the branches are merged. Life is even

Re: git log --no-walk --tags produces strange result for certain user

2013-12-16 Thread brian m. carlson
like a bug: vauxhall ok % git describe 8b4043428b90b7f45b7241b3c2c032cf785479ce v0.5.0 I'm looking at it. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552

[PATCH] log: properly handle decorations with chained tags

2013-12-16 Thread brian m. carlson
-off-by: brian m. carlson sand...@crustytoothpaste.net --- log-tree.c| 13 ++--- t/t4205-log-pretty-formats.sh | 15 +++ 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/log-tree.c b/log-tree.c index 642faff..a6b60b7 100644 --- a/log-tree.c

Re: [PATCH] log: properly handle decorations with chained tags

2013-12-18 Thread brian m. carlson
was looking for, but couldn't quite come up with. I'm going to re-roll with your fix instead of mine and my tests. Any objections to adding your sign-off? -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP

Re: [PATCH] log: properly handle decorations with chained tags

2013-12-19 Thread brian m. carlson
On Thu, Dec 19, 2013 at 10:44:22AM -0800, Junio C Hamano wrote: brian m. carlson sand...@crustytoothpaste.net writes: Yeah, that's the clean fix I was looking for, but couldn't quite come up with. I'm going to re-roll with your fix instead of mine and my tests. Any objections to adding

Re: [PATCH v2 8/8] http: default text charset to iso-8859-1

2014-05-22 Thread brian m. carlson
of stuff, especially if someone assumes US-ASCII means it's okay to use it where UTF-8 is required. It's much better to let people not insert broken stuff in the first place rather than deal with it afterwards. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http

Re: [PATCH] check_refname_component: Optimize

2014-05-29 Thread brian m. carlson
it manually. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Re: [PATCH v2 00/11] Zsh prompt tests

2014-06-10 Thread brian m. carlson
be fine by me. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Re: [PATCH v2 00/11] Zsh prompt tests

2014-06-11 Thread brian m. carlson
On Wed, Jun 11, 2014 at 11:27:23AM -0400, Richard Hansen wrote: On 2014-06-10 21:16, brian m. carlson wrote: Skipping them on older versions (maybe using is-at-least) would be fine by me. I don't think we'll need to skip the tests on old zsh versions -- running 'zsh -c' should still work

Re: git rebase --skip stuck in a loop

2014-06-12 Thread brian m. carlson
to reproduce this? If you can get that information, I'm interested in trying to fix it. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187

Re: [PATCH] gitk: use mktemp -d to avoid predictable temporary directories

2014-06-15 Thread brian m. carlson
if you like. Distributions will likely want to issue security advisories for this. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187

Re: [OT] List CC etiquette and my brain just do not seem to work

2014-06-15 Thread brian m. carlson
mail client should do the right thing and CC them. On the Git list, you are expected to CC everybody. I personally prefer the Debian strategy, as I read the list and don't generally need the extra copy, but when in Romeā€¦. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623

Re: [PATCH] gitk: use mktemp -d to avoid predictable temporary directories

2014-06-15 Thread brian m. carlson
harmful to existing users (avoids a tcl upgrade or mkdtemp installation for Windows users). Yeah, that would be the safest bet. Maybe a comment to that effect would be appropriate, so that when Tcl gets upgraded, that change can be removed. -- brian m. carlson / brian with sandals: Houston

Re: git rebase --skip stuck in a loop

2014-06-15 Thread brian m. carlson
a patch shortly. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

[PATCH] rebase--merge: fix --skip with two conflicts in a row

2014-06-15 Thread brian m. carlson
in call_merge. This also avoids an Already applied message when skipping a commit. There is no visible change for the other contexts in which call_merge is invoked, as the msgnum file's value remains unchanged in those situations. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- git

Conventions on struct copying?

2014-06-18 Thread brian m. carlson
structs like this, but I don't know of any prohibition against it, either. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc

Re: Error 128 Clone succeeded, but checkout failed

2014-06-18 Thread brian m. carlson
) is important in order to be able to help you. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Re: Error 128 Clone succeeded, but checkout failed

2014-06-18 Thread brian m. carlson
how well git works over SMB. Maybe some of the msysgit folks can chime in here? -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187

Re: Conventions on struct copying?

2014-06-19 Thread brian m. carlson
On Thu, Jun 19, 2014 at 01:22:44PM -0400, Jason Pyeron wrote: -Original Message- From: Junio C Hamano Sent: Thursday, June 19, 2014 13:11 brian m. carlson sand...@crustytoothpaste.net writes: I don't know of any place we explicitly copy structs like this,... which

Re: Tool/Scripts - For maintaining different branches on a repo

2014-06-20 Thread brian m. carlson
that GitLab is less painful to set up. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Re: [PATCH] fast-import: use hashcmp() for SHA1 hash comparison

2014-07-19 Thread brian m. carlson
, this will get a SIGBUS on sparc and possibly a wrong value on ARM[0]. [0] http://www.aleph1.co.uk/chapter-10-arm-structured-alignment-faq -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2

[PATCH] Documentation: fix missing text for rev-parse --verify

2014-07-21 Thread brian m. carlson
text. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- Documentation/git-rev-parse.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/git-rev-parse.txt b/Documentation/git-rev-parse.txt index 9bd76a5..0b84769 100644 --- a/Documentation/git-rev

Re: Git + mod_auth_kerb

2014-07-21 Thread brian m. carlson
information. With not much success. libcurl will always prefer something (anything) over basic auth, since basic auth is completely insecure unless you're using HTTPS. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion

Re: [PATCH] Documentation: fix missing text for rev-parse --verify

2014-07-21 Thread brian m. carlson
On Mon, Jul 21, 2014 at 04:14:38PM -0700, Jonathan Nieder wrote: brian m. carlson wrote: The caret (^) is used as a markup symbol in AsciiDoc. Due to the inability of AsciiDoc to parse a line containing an unmatched caret, it omitted the line from the output, resulting in the man page

Re: Git + mod_auth_kerb

2014-07-22 Thread brian m. carlson
On Tue, Jul 22, 2014 at 10:00:22AM -0700, Junio C Hamano wrote: brian m. carlson sand...@crustytoothpaste.net writes: So git uses libcurl with CURLAUTH_ANY. In order for authentication to work with libcurl, you have to supply a username. If you specify it in the URL, the libcurl

[PATCH v2] Documentation: fix missing text for rev-parse --verify

2014-07-22 Thread brian m. carlson
is encountered in running text, so do the same here. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- Documentation/git-rev-parse.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/git-rev-parse.txt b/Documentation/git-rev-parse.txt index 9bd76a5

Re: Git + mod_auth_kerb

2014-07-22 Thread brian m. carlson
? Is there a better way to integrate Kerberos via HTTPS for git ? I don't know of any better way. It does work for me, although I'm just one person. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4

Re: Git + mod_auth_kerb

2014-07-26 Thread brian m. carlson
On Tue, Jul 22, 2014 at 10:00:22AM -0700, Junio C Hamano wrote: brian m. carlson sand...@crustytoothpaste.net writes: So git uses libcurl with CURLAUTH_ANY. In order for authentication to work with libcurl, you have to supply a username. If you specify it in the URL, the libcurl

Re: stash-p broken?

2014-07-28 Thread brian m. carlson
: git log --format=%gd: %gs -g $@ refs/stash -- But it looks like git log ignores -p if -g is provided. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C

Re: cherry picking and merge

2014-07-31 Thread brian m. carlson
. Since rebase re-applies the patches of each of your commits on top of another branch, the identical change won't cause conflicts. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2

Re: Git Help needed

2014-08-01 Thread brian m. carlson
. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Re: Git Help needed

2014-08-01 Thread brian m. carlson
are the vendors of git so that I will check how to proceed on this. When I referred to having your vendor patch the check out, I meant your vendor of OpenSSL. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP

[PATCH] Documentation: avoid dangling modifier for imap-send

2014-08-02 Thread brian m. carlson
Avoid a nonsensical misreading by moving the modifier closer to the verb. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- Documentation/git-imap-send.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/git-imap-send.txt b/Documentation/git-imap

[PATCH v2] Documentation: avoid dangling modifier for imap-send

2014-08-02 Thread brian m. carlson
Avoid a nonsensical misreading by moving the modifier closer to the word it modifies. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- Documentation/git-imap-send.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/git-imap-send.txt b

[PATCH] archive: honor tar.umask even for pax headers

2014-08-02 Thread brian m. carlson
by other users. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- Technically, this is a security issue. However, the files created are not very useful[0] and the only implementations I found that write these files are GNU cpio, Debian/MirBSD/OpenBSD pax, and 7zip, none of which

Re: [PATCH v2] Documentation: avoid dangling modifier for imap-send

2014-08-04 Thread brian m. carlson
On Mon, Aug 04, 2014 at 11:29:33AM -0700, Junio C Hamano wrote: brian m. carlson sand...@crustytoothpaste.net writes: Avoid a nonsensical misreading by moving the modifier closer to the word it modifies. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- Documentation

[PATCH v2] Documentation: avoid dangling modifier for imap-send

2014-08-04 Thread brian m. carlson
Avoid a nonsensical misreading by removing needless text. Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- Documentation/git-imap-send.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/git-imap-send.txt b/Documentation/git-imap-send.txt index

Re: [PATCH v2] Documentation: avoid dangling modifier for imap-send

2014-08-04 Thread brian m. carlson
On Mon, Aug 04, 2014 at 07:51:08PM -0700, Jonathan Nieder wrote: Jonathan Nieder wrote: Should the neighboring instances of '[Rr]equired to use imap-send be changed to plain Required, too? (I suspect yes.) Here's what that would look like. -- 8 -- From: brian m. carlson sand

[PATCH] Documentation: change gitlink typo in git-push

2014-11-16 Thread brian m. carlson
The git-push manual page used gitlink in one place instead of linkgit. Fix this so the link renders correctly. Noticed-by: Dan Allen dan.j.al...@gmail.com Signed-off-by: brian m. carlson sand...@crustytoothpaste.net --- Documentation/git-push.txt | 2 +- 1 file changed, 1 insertion(+), 1

Re: How safe are signed git tags? Only as safe as SHA-1 or somehow safer?

2014-11-25 Thread brian m. carlson
in particular will appreciate that more. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Re: What's cooking in git.git (Nov 2014, #04; Wed, 26)

2014-11-27 Thread brian m. carlson
of a .gitignore file You didn't comment on the status of this branch, and I'm interested. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187

Re: Our cumbersome mailing list workflow

2014-11-28 Thread brian m. carlson
to the mailing list that don't get a response, even though those may represent legitimate bugs (code or documentation). -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552

Re: What's cooking in git.git (Nov 2014, #04; Wed, 26)

2014-11-30 Thread brian m. carlson
to prevent incompatibilities. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Disabling credential helper?

2014-12-02 Thread brian m. carlson
. Is there a better way to do this? I didn't see one in the documentation or code when I looked. [0] An Atlassian Stash instance. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994

Re: configure failed to detect no asciidoc

2014-12-02 Thread brian m. carlson
catalogs configured properly on your system, xsltproc will use them by default to avoid remote lookups. On Debian, the stylesheets and relevant catalog entries will be installed if you have the docbook-xsl package installed. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791

Re: Disabling credential helper?

2014-12-03 Thread brian m. carlson
the terminal prompting this weekend. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Re: FW: [cygwin] Cygwin's git says error: failed to read delta-pack base object

2014-12-03 Thread brian m. carlson
into it. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Re: git bundle vs git rev-list

2014-12-05 Thread brian m. carlson
the time frame. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Re: git bundle vs git rev-list

2014-12-05 Thread brian m. carlson
On Fri, Dec 05, 2014 at 03:40:06PM -0800, Junio C Hamano wrote: brian m. carlson sand...@crustytoothpaste.net writes: On Fri, Dec 05, 2014 at 03:36:18PM -0700, Jesse Hopkins wrote: 1. Any thoughts on why a tag would be included by 'git bundle', when 'git rev-list' with the same arguments

Re: Fetching a specific commit by commit ID

2014-12-06 Thread brian m. carlson
fixes that are in the repository. Allowing a user to specify an arbitrary ID would permit someone to circumvent those access controls. -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC

Re: [PATCH v3 23/23] untracked cache: guard and disable on system changes

2014-12-09 Thread brian m. carlson
this? -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc Description: Digital signature

Poor push performance with large number of refs

2014-12-09 Thread brian m. carlson
Pushing to remote-machine:/tmp/testcase To remote-machine:/tmp/testcase = [up to date] HEAD - test Everything up-to-date git push -vvv +HEAD 0.50s user 0.22s system 51% cpu 1.408 total -- brian m. carlson / brian with sandals: Houston, Texas, US +1 832 623 2791 | http

Re: Poor push performance with large number of refs

2014-12-10 Thread brian m. carlson
On Tue, Dec 09, 2014 at 09:41:28PM -0800, Shawn Pearce wrote: On Tue, Dec 9, 2014 at 4:37 PM, brian m. carlson sand...@crustytoothpaste.net wrote: Most of the time is spent between the Pushing to remote machine and Counting objects, running git pack-objects: git pack-objects --all

[PATCH] push: add remote.pushThin to control thin pack generation

2014-12-10 Thread brian m. carlson
From: brian m. carlson brian.carl...@cpanel.net Thin packs are enabled when pushing by default, but with a large number of refs and a fast network, git may spend more time trying to find a good delta than it would spend simply sending data over the network. Add a per-remote option, pushThin

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