author | Jeff King <peff@peff.net> | |
Sun, 5 Nov 2006 22:22:15 +0000 (17:22 -0500) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Mon, 6 Nov 2006 02:35:08 +0000 (18:35 -0800) | ||
commit | 49b8b2926fdcc4322445f0a3bda459e81cd98e9a | |
tree | 3e62dd3c87c69cc57bb3f3ff4878af9274e96e10 | tree | snapshot |
parent | 6c2f207b2316149ee8dfaf026e4a869ff9ab42f7 | commit | diff |
Fix git-runstatus for repositories containing a file named HEAD
The wt_status_print_updated() and wt_status_print_untracked() routines
call setup_revisions() with 'HEAD' being the reference to the tip of the
current branch. However, setup_revisions() gets confused if the branch
also contains a file named 'HEAD' resulting in a fatal error.
Instead, don't pass an argv to setup_revisions() at all; simply give it no
arguments, and make 'HEAD' the default revision.
Bug noticed by Rocco Rutte <pdmef@gmx.net>.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
The wt_status_print_updated() and wt_status_print_untracked() routines
call setup_revisions() with 'HEAD' being the reference to the tip of the
current branch. However, setup_revisions() gets confused if the branch
also contains a file named 'HEAD' resulting in a fatal error.
Instead, don't pass an argv to setup_revisions() at all; simply give it no
arguments, and make 'HEAD' the default revision.
Bug noticed by Rocco Rutte <pdmef@gmx.net>.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
wt-status.c | diff | blob | history |