https://github.com/git/git
Revision 1b510aa442d992b9983282abfad5743ac0e9be54 authored by Johannes Schindelin on 10 January 2007, 12:22:50 UTC, committed by Junio C Hamano on 10 January 2007, 16:31:29 UTC
Since c869753e, core.filemode is hardwired to false on Cygwin.
So this test had no chance to succeed, since an early commit
(changing just the filemode) failed, and therefore all subsequent
tests.

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 9a0eaf8
Raw File
Tip revision: 1b510aa442d992b9983282abfad5743ac0e9be54 authored by Johannes Schindelin on 10 January 2007, 12:22:50 UTC
Fix t1410 for core.filemode==false
Tip revision: 1b510aa
color.h
#ifndef COLOR_H
#define COLOR_H

/* "\033[1;38;5;2xx;48;5;2xxm\0" is 23 bytes */
#define COLOR_MAXLEN 24

int git_config_colorbool(const char *var, const char *value);
void color_parse(const char *var, const char *value, char *dst);
int color_printf(const char *color, const char *fmt, ...);
int color_printf_ln(const char *color, const char *fmt, ...);

#endif /* COLOR_H */
back to top