From 71d9699bdda83643ee8d6d722253a10b62dd0fec Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Thu, 12 Apr 2018 17:46:01 -0700 Subject: [PATCH] autospecnew: master branch should track origin/master Because 'make koji' expects that master should track origin/master, initialize the tracking branch during the autospecnew. Signed-off-by: Patrick McCarty --- Makefile.toplevel | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.toplevel b/Makefile.toplevel index b73b930..0841cb2 100644 --- a/Makefile.toplevel +++ b/Makefile.toplevel @@ -204,6 +204,7 @@ autospecnew: localreponotice cd $(TOPLVL)/packages/$(NAME); \ git init; \ git remote add origin $(PKG_BASE_URL)/$(NAME); \ + git branch -u origin/master master; \ $(call gitoliteurl,packages/$(NAME)); \ $(call subjectprefix,$(NAME)); \ ); \