mirror of
https://github.com/git/git.git
synced 2024-11-02 07:17:58 +01:00
Merge branch 'jc/sideband'
* jc/sideband: sideband: do not use color, just say "remote:" fetch/clone: mark messages from remote side stand out.
This commit is contained in:
commit
962ad61874
1 changed files with 3 additions and 1 deletions
|
@ -129,10 +129,12 @@ static pid_t setup_sideband(int sideband, const char *me, int fd[2], int xd[2])
|
||||||
len--;
|
len--;
|
||||||
switch (buf[0] & 0xFF) {
|
switch (buf[0] & 0xFF) {
|
||||||
case 3:
|
case 3:
|
||||||
|
safe_write(2, "remote: ", 8);
|
||||||
safe_write(2, buf+1, len);
|
safe_write(2, buf+1, len);
|
||||||
fprintf(stderr, "\n");
|
safe_write(2, "\n", 1);
|
||||||
exit(1);
|
exit(1);
|
||||||
case 2:
|
case 2:
|
||||||
|
safe_write(2, "remote: ", 8);
|
||||||
safe_write(2, buf+1, len);
|
safe_write(2, buf+1, len);
|
||||||
continue;
|
continue;
|
||||||
case 1:
|
case 1:
|
||||||
|
|
Loading…
Reference in a new issue