From 27911b74336f07029a93eca54ab74a75de2b73f9 Mon Sep 17 00:00:00 2001 From: mhagger Date: Fri, 8 Jun 2012 08:09:56 +0000 Subject: [PATCH] Revert an overambitious search-and-replace operation. In commit r5098, the namespace where git branches are sought by git-move-refs.py was accidentally changed from "heads" to "branches" as part of a change to the script's command-line options. Revert that part of r5098. Patch by: Andrew Nefedkin git-svn-id: http://cvs2svn.tigris.org/svn/cvs2svn/trunk@5382 be7e6eca-30d4-0310-a8e5-ac0d63af7087 --- contrib/git-move-refs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/git-move-refs.py b/contrib/git-move-refs.py index e1750d8f..c19625e2 100755 --- a/contrib/git-move-refs.py +++ b/contrib/git-move-refs.py @@ -162,7 +162,7 @@ def main(args): process_refs("tags") if options.branches: - process_refs("branches") + process_refs("heads") main(sys.argv[1:]) -- 2.11.4.GIT