From 9d73fad4ca15bc0fffe34ee66aea5b9691ab3d2f Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Mon, 20 Jun 2005 16:14:13 -0700 Subject: git-rev-parse: flush "default" head when encountering something unexpected The unexpected thing is likely a pathname, we need the default for that too. --- rev-parse.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'rev-parse.c') diff --git a/rev-parse.c b/rev-parse.c index 1f4f3240d..7419d18b3 100644 --- a/rev-parse.c +++ b/rev-parse.c @@ -111,9 +111,12 @@ int main(int argc, char **argv) printf("^%s\n", sha1_to_hex(sha1)); continue; } + if (def) { + printf("%s\n", def); + def = NULL; + } if (revs_only) continue; - def = NULL; printf("%s\n", arg); } if (def) -- cgit v1.2.1