Re: Local tag killer

2013-09-29 Thread Johan Herland
On Sun, Sep 29, 2013 at 6:29 AM, Michael Haggerty wrote: > I wonder whether remotes.group could sensibly be used to group remotes > into logical groups for value lookups: > > [remotes] > gitk = gitk-origin > gitk = second-gitk-repo > > Then DWIM could be taught to seek

Loan Offer

2013-09-29 Thread jhk...@lehigh.edu
We offer Loan for 3% if you are interested do send details.contact Mr Tony Bowyer: coastalfinanceloanf...@hotmail.com This message was sent using IMP, the Internet Messaging Program. -- To unsubscribe from this list: send t

Re: [msysGit] [PATCH] mingw-multibyte: fix memory acces violation and path length limits.

2013-09-29 Thread Stefan Beller
On 09/29/2013 04:56 AM, Wataru Noguchi wrote: > > - gcc optimization level is O2.(fail) > - gcc O0, O1 works fine. Maybe you could try to compile with STACK found at http://css.csail.mit.edu/stack/ That tool is designed to find Optimization-unstable code. signature.asc Description: OpenPGP d

Re: [PATCH] builtin/push.c: Add `--notes` option

2013-09-29 Thread Johan Herland
On Fri, Sep 20, 2013 at 2:20 PM, Rodolphe Belouin wrote: > Make the user able to call `git push --notes` instead of > `git push refs/notes/*` I'm sorry for not replying to this earlier. I'm unsure how much of the earlier discussions around pushing and pulling notes you have followed, but the shor

[PATCH] Makefile: suppress false positive warnings of empty format string.

2013-09-29 Thread Stefan Beller
Signed-off-by: Stefan Beller --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index de3d72c..60afa51 100644 --- a/Makefile +++ b/Makefile @@ -349,7 +349,7 @@ GIT-VERSION-FILE: FORCE # CFLAGS and LDFLAGS are for the users to override from the

Re: [PATCH] Makefile: suppress false positive warnings of empty format string.

2013-09-29 Thread Felipe Contreras
On Sun, Sep 29, 2013 at 7:08 AM, Stefan Beller wrote: > Signed-off-by: Stefan Beller > --- > Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Makefile b/Makefile > index de3d72c..60afa51 100644 > --- a/Makefile > +++ b/Makefile > @@ -349,7 +349,7 @@ GIT-VERSION-F

Re: [PATCH] Makefile: suppress false positive warnings of empty format string.

2013-09-29 Thread Ramsay Jones
On 29/09/13 16:07, Felipe Contreras wrote: > On Sun, Sep 29, 2013 at 7:08 AM, Stefan Beller > wrote: >> Signed-off-by: Stefan Beller >> --- >> Makefile | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/Makefile b/Makefile >> index de3d72c..60afa51 100644 >> --- a/Makefi

[PATCH] build: fix installation of scripts

2013-09-29 Thread Felipe Contreras
They need the gitexecdir. Signed-off-by: Felipe Contreras --- Otherwise this makes it difficult to package contrib scripts in certain distributions. For example, if you have a proper Makefile in contrib: --- TESTS := $(wildcard test*.sh) SCRIPTS := $(wildcard git-remote-*.py) export T := $(ad

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

2013-09-29 Thread brian m. carlson
On Sat, Sep 28, 2013 at 04:34:05AM -0400, Jeff King wrote: > Subsequent requests will not be for "info/refs", but for > other paths relative to the base. We must ask the caller to > pass in the original base, and we must pass the redirected > base back to the caller (so that it can generte more URL

Re: [PATCH] Makefile: suppress false positive warnings of empty format string.

2013-09-29 Thread Jonathan Nieder
Hi, Stefan Beller wrote: > --- a/Makefile > +++ b/Makefile > @@ -349,7 +349,7 @@ GIT-VERSION-FILE: FORCE > > # CFLAGS and LDFLAGS are for the users to override from the command line. > > -CFLAGS = -g -O2 -Wall > +CFLAGS = -g -O2 -Wall -Wno-format-zero-length Thanks for taking this on. Two

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

2013-09-29 Thread Eric Sunshine
On Sat, Sep 28, 2013 at 4:34 AM, Jeff King wrote: > diff --git a/http.c b/http.c > index 65a0048..8775b5c 100644 > --- a/http.c > +++ b/http.c > @@ -921,11 +921,71 @@ static int http_request_reauth(const char *url, > +static int update_url_from_redirect(struct strbuf *base, > +

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

2013-09-29 Thread Jeff King
On Sun, Sep 29, 2013 at 03:26:45PM -0400, Eric Sunshine wrote: > On Sat, Sep 28, 2013 at 4:34 AM, Jeff King wrote: > > diff --git a/http.c b/http.c > > index 65a0048..8775b5c 100644 > > --- a/http.c > > +++ b/http.c > > @@ -921,11 +921,71 @@ static int http_request_reauth(const char *url, > > +st

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

2013-09-29 Thread Eric Sunshine
On Sun, Sep 29, 2013 at 3:32 PM, Jeff King wrote: > On Sun, Sep 29, 2013 at 03:26:45PM -0400, Eric Sunshine wrote: > >> On Sat, Sep 28, 2013 at 4:34 AM, Jeff King wrote: >> > diff --git a/http.c b/http.c >> > index 65a0048..8775b5c 100644 >> > --- a/http.c >> > +++ b/http.c >> > @@ -921,11 +921,7

[PATCH v2 0/4] git-svn.txt: miscellaneous changes

2013-09-29 Thread Keshav Kini
I'm not sure if this was the best way to split my changes into commits. Please let me know if it wasn't. Keshav Kini (4): git-svn.txt: fix AsciiDoc formatting error git-svn.txt: reword description of gc command git-svn.txt: replace .git with $GIT_DIR git-svn.txt: elaborate on rev_map files

[PATCH v2 3/4] git-svn.txt: replace .git with $GIT_DIR

2013-09-29 Thread Keshav Kini
As $GIT_DIR may not equal '.git', it's usually more generally correct to refer to files in $GIT_DIR rather than in .git . This will also allow me to link some of the occurrences of '.git' in git-svn.txt to a new reference target inside this file in an upcoming commit, because in AsciiDoc definitio

[PATCH v2 1/4] git-svn.txt: fix AsciiDoc formatting error

2013-09-29 Thread Keshav Kini
As asterisks are used to indicate bold text in AsciiDoc, shell glob expressions must be escaped appropriately. Signed-off-by: Keshav Kini --- Documentation/git-svn.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt index

[PATCH v2 2/4] git-svn.txt: reword description of gc command

2013-09-29 Thread Keshav Kini
It's redundant to say that $GIT_DIR/svn//unhandled.log or $GIT_DIR/svn//index is in .git/svn when $GIT_DIR is '.git', and is wrong when $GIT_DIR is not '.git' Also, a '/' was missing from the pathname $GIT_DIR/svn//index . Signed-off-by: Keshav Kini --- Documentation/git-svn.txt | 4 ++-- 1 fil

[PATCH v2 4/4] git-svn.txt: elaborate on rev_map files

2013-09-29 Thread Keshav Kini
The man page for `git svn` describes a situation in which "'git svn' will not be able to rebuild" your $GIT_DIR/svn/**/.rev_map* files, but no mention is made of in what circumstances `git svn` *will* be able to do so, how to get `git svn` to do so, or even what these files are. This patch adds a

для Вас распахнутся Необычные возможносттак же, так же более не будет помех!

2013-09-29 Thread o.evgen
негласное вооружение синьор http://li.ru/go?gl.to/779692