From 2c2b6646c2723459dbd334c7ced6f77ffb0d596e Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Wed, 14 Aug 2013 10:57:24 -0700 Subject: Revert "Add new @ shortcut for HEAD" This reverts commit cdfd94837b27c220f70f032b596ea993d195488f, as it does not just apply to "@" (and forms with modifiers like @{u} applied to it), but also affects e.g. "refs/heads/@/foo", which it shouldn't. The basic idea of giving a short-hand might be good, and the topic can be retried later, but let's revert to avoid affecting existing use cases for now for the upcoming release. --- refs.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'refs.c') diff --git a/refs.c b/refs.c index 7b08a37153..7922261580 100644 --- a/refs.c +++ b/refs.c @@ -72,10 +72,6 @@ int check_refname_format(const char *refname, int flags) { int component_len, component_count = 0; - if (!strcmp(refname, "@")) - /* Refname is a single character '@'. */ - return -1; - while (1) { /* We are at the start of a path component. */ component_len = check_refname_component(refname, flags); -- cgit v1.2.1