Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'jc/sideband'
* jc/sideband:
  sideband: do not use color, just say "remote:"
  fetch/clone: mark messages from remote side stand out.
  • Loading branch information
Junio C Hamano committed Aug 3, 2006
2 parents 53dd8a9 + 2de196f commit 962ad61
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fetch-clone.c
Expand Up @@ -129,10 +129,12 @@ static pid_t setup_sideband(int sideband, const char *me, int fd[2], int xd[2])
len--;
switch (buf[0] & 0xFF) {
case 3:
safe_write(2, "remote: ", 8);
safe_write(2, buf+1, len);
fprintf(stderr, "\n");
safe_write(2, "\n", 1);
exit(1);
case 2:
safe_write(2, "remote: ", 8);
safe_write(2, buf+1, len);
continue;
case 1:
Expand Down

0 comments on commit 962ad61

Please sign in to comment.