https://bugzilla.wikimedia.org/show_bug.cgi?id=35462
--- Comment #3 from Marcin Cieślak <[email protected]> 2012-03-28 02:01:16 UTC --- I am still hoping this can be configured somehow. Just found this: 17 #define ANSI_SUFFIX "\033[K" 18 #define DUMB_SUFFIX " " 19 20 #define FIX_SIZE 10 /* large enough for any of the above */ 21 22 int recv_sideband(const char *me, int in_stream, int out) 23 { 24 unsigned pf = strlen(PREFIX); 25 unsigned sf; 26 char buf[LARGE_PACKET_MAX + 2*FIX_SIZE]; 27 char *suffix, *term; 28 int skip_pf = 0; 29 30 memcpy(buf, PREFIX, pf); 31 term = getenv("TERM"); 32 if (term && strcmp(term, "dumb")) 33 suffix = ANSI_SUFFIX; 34 else 35 suffix = DUMB_SUFFIX; 36 sf = strlen(suffix); http://git.kernel.org/?p=git/git.git;a=blob;f=sideband.c;h=d5ffa1c8919a6db750606c78a1b44d8618fa35a5;hb=HEAD#l33 *facepalm* Need to find out how to set TERM=dumb for git-receive-pack, I hope it's a local client issue. -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
