Git on Mac OS X 10.4.10

2014-08-14 Thread Markus Hitter
in this function) make: *** [imap-send.o] Error 1 -- - - - - - - - - - - - - - - - - - - - Dipl. Ing. (FH) Markus Hitter http://www.jump-ing.de/ -- 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

Re: Git on Mac OS X 10.4.10

2014-08-14 Thread Markus Hitter
Am 14.08.2014 um 16:39 schrieb Torsten Bögershausen: On 08/14/2014 02:13 PM, Markus Hitter wrote: Issue 2: I need this simple patch ... --- compat/apple-common-crypto.h.org2014-07-30 23:19:53.0 +0200 +++ compat/apple-common-crypto.h2014-08-14 12:57:37.0 +0200 @@ -2,7

Re: Git on Mac OS X 10.4.10

2014-08-15 Thread Markus Hitter
+ NO_APPLE_COMMON_CRYPTO = YesPlease endif ifeq ($(shell expr $(uname_R) : '[15]\.'),2) NO_STRLCPY = YesPlease -- - - - - - - - - - - - - - - - - - - - Dipl. Ing. (FH) Markus Hitter http://www.jump-ing.de/ -- To unsubscribe from this list: send the line unsubscribe

Re: Git on Mac OS X 10.4.10

2014-08-15 Thread Markus Hitter
-- - - - - - - - - - - - - - - - - - - - Dipl. Ing. (FH) Markus Hitter http://www.jump-ing.de/ # git Makefile configuration, included in main Makefile # config.mak.autogen. Generated from config.mak.in by configure. CC = cc CFLAGS = -g -O2 CPPFLAGS = LDFLAGS = AR = ar TAR = tar DIFF = diff PACKAGE_TARNAME = git #INSTALL = @INSTALL

Re: Bug: git config does not respect read-only .gitconfig file

2016-11-08 Thread Markus Hitter
so it'd be interesting to know why this code was added. The relevant commit in the git.git repo should tell. Markus -- - - - - - - - - - - - - - - - - - - - Dipl. Ing. (FH) Markus Hitter http://www.jump-ing.de/

Re: gitk: avoid obscene memory consumption

2016-11-06 Thread Markus Hitter
Am 05.11.2016 um 12:08 schrieb Paul Mackerras: > On Fri, Nov 04, 2016 at 03:45:09PM -0700, Stefan Beller wrote: >> On Fri, Nov 4, 2016 at 12:49 PM, Markus Hitter <m...@jump-ing.de> wrote: >>> >>> Hello all, >> >> +cc Paul Mackeras, who maintains gitk.

Re: [PATCH 0/3] gitk: memory consumption improvements

2016-11-09 Thread Markus Hitter
http://core.tcl.tk/tk/info/549d2f56757408f3 Markus -- - - - - - - - - - - - - - - - - - - - Dipl. Ing. (FH) Markus Hitter http://www.jump-ing.de/

Re: [PATCH 5/6] config docs: Provide for config to specify tags not to abbreviate

2016-11-09 Thread Markus Hitter
en one would create such interesting tags with git tag -i or git tag --interesting To reduce the backwards compatibility problem these itags could be stored in .git/refs/tags as well, itag-aware tools would sort the duplicates out. Markus -- - - - - - - - - - - - - - - - - - - - Dipl

Re: gitk: avoid obscene memory consumption

2016-11-07 Thread Markus Hitter
->8--- [memory info] requires a Tcl with memory debug enabled. Markus -- - - - - - - - - - - - - - - - - - - - Dipl. Ing. (FH) Markus Hitter http://www.jump-ing.de/

Re: [PATCH 0/6] Provide for config to specify tags not to abbreviate

2016-11-08 Thread Markus Hitter
ong names just means they're not cut off by the abbreviation algorithm, but by the right boundary of the visible area. My $0.02, Markus -- - - - - - - - - - - - - - - - - - - - Dipl. Ing. (FH) Markus Hitter http://www.jump-ing.de/

[PATCH 1/3] gitk: turn off undo manager in the text widget

2016-11-07 Thread Markus Hitter
>From e965e1deb9747bbc2b40dc2de95afb65aee9f7fd Mon Sep 17 00:00:00 2001 From: Markus Hitter <m...@jump-ing.de> Date: Sun, 6 Nov 2016 20:38:03 +0100 Subject: [PATCH 1/3] gitk: turn off undo manager in the text widget The diff text widget is read-only, so there's zero point in buildin

gitk: avoid obscene memory consumption

2016-11-04 Thread Markus Hitter
@@ set blobdifffd($diffids) $fd set diffinhdr 0 set currdiffsubmod "" +set parseddifflines 0 filerun $fd [list getblobdiffline $fd $diffids] } Cheers, Markus -- - - - - - - - - - - - - - - - - - - - Dipl. Ing. (FH) Markus Hitter http://www.jump-ing.de/

[PATCH 0/3] gitk: memory consumption improvements

2016-11-07 Thread Markus Hitter
and - forget the 'commitinfo' array on a reload to enforce reloading it. I hope this finds you appreciation. Markus -- - - - - - - - - - - - - - - - - - - - Dipl. Ing. (FH) Markus Hitter http://www.jump-ing.de/

[PATCH 3/3] gitk: clear array 'commitinfo' on reload

2016-11-07 Thread Markus Hitter
>From 8359452f426c68cc02250f25f20eaaacd2ddd001 Mon Sep 17 00:00:00 2001 From: Markus Hitter <m...@jump-ing.de> Date: Mon, 7 Nov 2016 19:02:51 +0100 Subject: [PATCH 3/3] gitk: clear array 'commitinfo' on reload After a reload we might have an entirely different set of commits, so ke

[PATCH 2/3] gitk: remove closed file descriptors from $blobdifffd

2016-11-07 Thread Markus Hitter
>From 0a463fcd977dc9558835c373e24a095e35ca3c82 Mon Sep 17 00:00:00 2001 From: Markus Hitter <m...@jump-ing.de> Date: Mon, 7 Nov 2016 16:01:17 +0100 Subject: [PATCH 2/3] gitk: remove closed file descriptors from $blobdifffd One shouldn't have descriptors of already closed files around.

Re: Resend: Gitk: memory consumption improvements

2016-12-10 Thread Markus Hitter
Am 09.12.2016 um 18:57 schrieb Stefan Beller: > On Fri, Dec 9, 2016 at 3:51 AM, Markus Hitter <m...@jump-ing.de> wrote: >> >> It's a month now since I sent three patches to this list for reducing memory >> consumption of Gitk considerably: >> >> https://

Resend: Gitk: memory consumption improvements

2016-12-09 Thread Markus Hitter
hat's cooking" post either. Anything missing? I'd like to put a 'done' checkmark behind this. Markus -- - - - - - - - - - - - - - - - - - - - Dipl. Ing. (FH) Markus Hitter http://www.jump-ing.de/

Re: [RFC/PATCH] merge: Add '--continue' option as a synonym for 'git commit'

2016-12-12 Thread Markus Hitter
an only be run after the > +merge has resulted in conflicts. 'git merge --continue' will take the > +currently staged changes and complete the merge. I think this should mention the equivalence to 'git commit'. Markus -- - - - - - - - - - - - - - - - - - - - Dipl. Ing. (FH) Markus Hitter http://www.jump-ing.de/