Signed-off-by: Alexander Kuleshov
---
Documentation/git-add.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/git-add.txt b/Documentation/git-add.txt
index 9631526..1c74907 100644
--- a/Documentation/git-add.txt
+++ b/Documentation/git-add.txt
@@ -8,7 +8,7 @@ g
On Thu, Jan 8, 2015 at 3:00 PM, Reuben Hawkins wrote:
> The checks will override and unset YesPlease settings for HAVE_CLOCK_GETTIME
> and HAVE_CLOCK_MONOTONIC in config.mak.uname.
I find this hard to grok and would rewrite it as:
Set or clear Makefile variables HAVE_CLOCK_GETTIME and
HA
On Thu, Jan 8, 2015 at 3:00 PM, Reuben Hawkins wrote:
> OpenSSL version 0.9.6b and before defined the function HMAC_cleanup.
> Newer versions define HMAC_CTX_cleanup. Check for HMAC_CTX_cleanup and
> fall back to HMAC_cleanup when the newer function is missing.
>
> Signed-off-by: Reuben Hawkins
On Thu, Jan 8, 2015 at 3:00 PM, Reuben Hawkins wrote:
> Detect 'tv_nsec' field in 'struct stat' and set Makefile variable
> NO_NSEC appropriately.
>
> A side-effect of the above detection is that we also determine
> whether 'stat.st_mtimespec' is available, so, as a bonus, set the
> Makefile varia
On Jan 8, 2015, at 11:10, Junio C Hamano wrote:
"Kyle J. McKay" writes:
For now only __GNUC__ is tested which covers both gcc and clang
which should result in early detection of any adjacent N_ macros.
I didn't check the list of -W options, but if there were a way to
tell gcc to stick to th
Stefan Beller writes:
> From: Ronnie Sahlberg
>
> This adds the atomic protocol option to allow
> receive-pack to inform the client that it has
> atomic push capability.
>
> This commit makes the functionality introduced
> in the previous commits go live for the serving
> side. The changes in do
When receive.denyCurrentBranch is set to updateInstead, a push that
tries to update the branch that is currently checked out is accepted
only when the index and the working tree exactly matches the
currently checked out commit, in which case the index and the
working tree are updated to match the p
On Sun, Jan 04, 2015 at 11:55:24AM -0800, Junio C Hamano wrote:
> Marc Finet writes:
>
> > Some mailing list use "PATCH:" rather than "[PATCH]" to prefix
> > patches, so introduce a new option to configure:
> > - 2 chars that would enclose PATCH (and counters)
> > - 1 char that would come just
What if move -v/--verbose after commands? Like:
git remote show [-v | --verbose] [-n]
and etc...?
2015-01-09 2:14 GMT+06:00 Junio C Hamano :
> René Scharfe writes:
>
>> Am 08.01.2015 um 18:57 schrieb Alexander Kuleshov:
>>> git remote show doesn't use -v/--verbose option
>>
>> Hmm, but it does
Signed-off-by: 0xAX
---
builtin/show-branch.c | 8 +---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/builtin/show-branch.c b/builtin/show-branch.c
index 270e39c..18245ad 100644
--- a/builtin/show-branch.c
+++ b/builtin/show-branch.c
@@ -6,9 +6,11 @@
#include "parse-options.h
No it doesn't breaks N_ macro. Will resend the patch.
2015-01-09 2:05 GMT+06:00 Junio C Hamano :
> Alexander Kuleshov writes:
>
>> Signed-off-by: Alexander Kuleshov
>> ---
>
> s/Indentation for/line-wrap/, perhaps?
>
> What the patch wants to do makes sense to me, but I haven't seen a
> long mul
Will research this question and resend the patch.
Thank you.
2015-01-09 1:45 GMT+06:00 Junio C Hamano :
> Alexander Kuleshov writes:
>
>> Signed-off-by: Alexander Kuleshov
>> ---
>> builtin/cat-file.c | 4
>> 1 file changed, 4 deletions(-)
>>
>> diff --git a/builtin/cat-file.c b/builtin/c
René Scharfe writes:
> Am 08.01.2015 um 18:57 schrieb Alexander Kuleshov:
>> git remote show doesn't use -v/--verbose option
>
> Hmm, but it does?
>
> $ git version
> git version 2.2.1
> $ git remote show
> origin
> $ git remote -v show
> origin git://git.kern
Alexander Kuleshov writes:
> Signed-off-by: Alexander Kuleshov
> ---
s/Indentation for/line-wrap/, perhaps?
What the patch wants to do makes sense to me, but I haven't seen a
long multi-line string, each lines in which is terminated with "\n\"
in the source, fed to N_() macro anywhere else in
OpenSSL version 0.9.6b and before defined the function HMAC_cleanup.
Newer versions define HMAC_CTX_cleanup. Check for HMAC_CTX_cleanup and
fall back to HMAC_cleanup when the newer function is missing.
Signed-off-by: Reuben Hawkins
---
Makefile | 6 ++
configure.ac | 4
g
The checks will override and unset YesPlease settings for HAVE_CLOCK_GETTIME
and HAVE_CLOCK_MONOTONIC in config.mak.uname.
CLOCK_MONOTONIC isn't available on RHEL3, but there are still RHEL3 systems
being used in production.
Signed-off-by: Reuben Hawkins
---
Makefile | 6 ++
config
Detect 'tv_nsec' field in 'struct stat' and set Makefile variable
NO_NSEC appropriately.
A side-effect of the above detection is that we also determine
whether 'stat.st_mtimespec' is available, so, as a bonus, set the
Makefile variable USE_ST_TIMESPEC, as well.
Signed-off-by: Reuben Hawkins
---
Alexander Kuleshov writes:
> git remote show doesn't use -v/--verbose option
>
> Signed-off-by: Alexander Kuleshov
Thanks.
I think these two patches should be squashed into one (which I can
do locally without asking you to resend) but they are good changes.
The subcommand does not just "not
Alexander Kuleshov writes:
> Signed-off-by: Alexander Kuleshov
> ---
> builtin/cat-file.c | 4
> 1 file changed, 4 deletions(-)
>
> diff --git a/builtin/cat-file.c b/builtin/cat-file.c
> index f8d8129..750b5a2 100644
> --- a/builtin/cat-file.c
> +++ b/builtin/cat-file.c
> @@ -4,12 +4,8 @@
On Thu, Jan 08, 2015 at 11:08:47AM -0800, Junio C Hamano wrote:
> > I wonder if it is worth having a "git-only" mode for core.protectNTFS.
> > Turning it off entirely would make him susceptible to GIT~1 attacks.
>
> Yes, I think having distinctions would make sense, but I am not sure
> if "git-on
Alexander Kuleshov writes:
> Subject: Re: [PATCH] cat-file: Move assignment to the buffer declaration
"git shortlog" on recent history shows that it is conventional not
to upcase the sentence after the ":" on titles.
This line not just "declares" but "defines" buf, so I'd phrase it
more like:
Ah, yes, right. Please dismiss 1,2 patches.
Sorry for noise
2015-01-09 1:17 GMT+06:00 René Scharfe :
> Am 08.01.2015 um 18:57 schrieb Alexander Kuleshov:
>>
>> git remote show doesn't use -v/--verbose option
>
>
> Hmm, but it does?
>
> $ git version
> git version 2.2.1
> $
Am 08.01.2015 um 18:57 schrieb Alexander Kuleshov:
git remote show doesn't use -v/--verbose option
Hmm, but it does?
$ git version
git version 2.2.1
$ git remote show
origin
$ git remote -v show
origin git://git.kernel.org/pub/scm/git/git.git (f
"Kyle J. McKay" writes:
> For now only __GNUC__ is tested which covers both gcc and clang
> which should result in early detection of any adjacent N_ macros.
I didn't check the list of -W options, but if there were a way to
tell gcc to stick to the C standard in a more strict way than its
defaul
Jeff King writes:
> On Thu, Jan 08, 2015 at 11:06:18AM +0100, Johannes Schindelin wrote:
>
>> ICON~714.PNG is a valid short name for a long name (such as
>> 'icon.background.png') because it fits the shortening scheme (8.3 format,
>> the base name ends in ~). As this can clash with a validly shor
Signed-off-by: Alexander Kuleshov
---
builtin/cat-file.c | 4
1 file changed, 4 deletions(-)
diff --git a/builtin/cat-file.c b/builtin/cat-file.c
index f8d8129..750b5a2 100644
--- a/builtin/cat-file.c
+++ b/builtin/cat-file.c
@@ -4,12 +4,8 @@
* Copyright (C) Linus Torvalds, 2005
*/
#in
Signed-off-by: Alexander Kuleshov
---
builtin/cat-file.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/builtin/cat-file.c b/builtin/cat-file.c
index f8d8129..840ace2 100644
--- a/builtin/cat-file.c
+++ b/builtin/cat-file.c
@@ -17,14 +17,13 @@ static int cat_one_file(int op
Signed-off-by: Alexander Kuleshov
---
builtin/show-branch.c | 5 -
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/builtin/show-branch.c b/builtin/show-branch.c
index 270e39c..2e60107 100644
--- a/builtin/show-branch.c
+++ b/builtin/show-branch.c
@@ -6,7 +6,10 @@
#include "parse
git remote show doesn't use -v/--verbose option
Signed-off-by: Alexander Kuleshov
---
Documentation/git-remote.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/git-remote.txt b/Documentation/git-remote.txt
index cb103c8..07eb668 100644
--- a/Documentation/git
git remote show doesn't use -v/--verbose option
Signed-off-by: Alexander Kuleshov
---
builtin/remote.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/builtin/remote.c b/builtin/remote.c
index 46ecfd9..978c645 100644
--- a/builtin/remote.c
+++ b/builtin/remote.c
@@ -14,7 +14,
On Thu, Jan 8, 2015 at 12:43 PM, Minty wrote:
> git svn clone https://www.example.com/dshfkjhfsjhsdkjfhsdf/nameofrepo
>
> r869 = 9823c89bbdfa9d51aeb0a16c539049ae96nd5d62 (refs/remotes/git-svn)
> Dpath/to/stuff/Example1.java
> Dpath/to/stuff/Example2.java
> W: -empty_dir: path/to/st
Hello, all.
I just have started to develop SVNGit, the servlet library in pure
Java for SVN Client to checkout Git repository. The project is hosted
at https://github.com/naver/svngit.
Since the project is at very early stage, SVNGit unstably supports
only a few SVN commands: checkout, update and
On 01/08/2015 04:58 PM, Johannes Schindelin wrote:
> Hi Torsten,
>
> On Thu, 8 Jan 2015, Torsten Bögershausen wrote:
>
>> There is something more then just the "tilde" protection going on, [...]
>
> Indeed. What is going on is that you build Git yourself, from git.git,
> while Dmitry obviously u
I am attempting to clone this repo: https://github.com/jsonn/src/
and have been successful on some lower memory systems, but i'm
interested in continuing to push down the limit.
I am getting more success running clone via https:// than git:// or
ssh (which is confusing to me) and the smallest sys
Hi Torsten,
On Thu, 8 Jan 2015, Torsten Bögershausen wrote:
> There is something more then just the "tilde" protection going on, [...]
Indeed. What is going on is that you build Git yourself, from git.git,
while Dmitry obviously used Git for Windows -- which carries a couple of
patches on top of
Alex Henrie writes:
> - Placing angle brackets around fill-in-the-blank parameters
> - Putting dashes in multiword parameter names
> - Adding spaces to [-f|--foobar] to make [-f | --foobar]
> - Replacing * with [...]
The review would be easier with a patch series having one patch per item
in thi
On 01/08/2015 11:28 AM, Jeff King wrote:
On Thu, Jan 08, 2015 at 11:06:18AM +0100, Johannes Schindelin wrote:
ICON~714.PNG is a valid short name for a long name (such as
'icon.background.png') because it fits the shortening scheme (8.3 format,
the base name ends in ~). As this can clash with a
I appear to have hit a bug (or have data that the code fails on) while
importing an SVN repo to git.
I'm wondering if there is anything I can do to help find / fix the
cause, given I appear to have a fail-case.
Sadly I can't supply the SVN repo as the code is private.
What I did:
git svn clone
On Thu, Jan 8, 2015 at 6:39 AM, Yuri D'Elia wrote:
[snip]
> I usually never use frontends. The notable exception is "tig" when I
> want to get a feeling of the status of several branches and/or "blame"
> some files. It haves a lot of typing. That being said, I tried gitk, but
> assumed it was also
On 01/08/2015 08:52 AM, Kyle J. McKay wrote:
> Since --graph is text-based, this response may not be on-topic hence
> no cc: to the list.
I see --graph as an important tool to get an overview on how the
development is being done. I don't mind having a graphical tool for the
job, and I was even s
Hi Peff,
On Thu, 8 Jan 2015, Jeff King wrote:
> On Thu, Jan 08, 2015 at 11:06:18AM +0100, Johannes Schindelin wrote:
>
> > ICON~714.PNG is a valid short name for a long name (such as
> > 'icon.background.png') because it fits the shortening scheme (8.3 format,
> > the base name ends in ~). As th
On Wed, Jan 07, 2015 at 08:03:58AM -0800, Junio C Hamano wrote:
> > But we are talking about
> > somebody who is already fully-qualifying a ref (and anything unqualified
> > continues to get looked up under refs/notes).
>
> That (specifically 'merge') is not my real worry. It's the other
> way a
On Thu, Jan 08, 2015 at 11:06:18AM +0100, Johannes Schindelin wrote:
> ICON~714.PNG is a valid short name for a long name (such as
> 'icon.background.png') because it fits the shortening scheme (8.3 format,
> the base name ends in ~). As this can clash with a validly shortened
> long name, Git for
Hi Junio,
On Wed, 7 Jan 2015, Junio C Hamano wrote:
> Dscho, this sounds to me like the additional "8.3 ambiguity
> protection" (which is only in Git for Windows) in action. Any
> thoughts?
First thought: the Git for Windows mailing list should be Cc:ed (I was
traveling yesterday and somebody el
Hi Alex,
[somehow my mailer did not like the Cc: list, so I had to cull it]
On Wed, 7 Jan 2015, Alex Henrie wrote:
> This patch puts the usage info strings that were not already in docopt-
> like format into docopt-like format, which will be a litle easier for
> end users and a lot easier for tr
`git show-branch --upstream` is equivalent to `git show-branch
$(git for-each-ref refs/heads --format '%(refname:short)')
$(git for-each-ref refs/heads --format '%(upstream:short)')`
`git show-branch --upstream foo bar` is equivalent to `git show-branch
foo bar $(git for-each-ref refs/heads/foo re
The N_ macro is used to mark strings for translation without
actually translating them. At runtime the string is expected
to be passed to the gettext API for translation.
If two N_ macro invocations appear next to each other with only
whitespace (or nothing at all) between them, the two separate
47 matches
Mail list logo