From 8dd9afe4f9837df50d905b25197847928cefa087 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <github@thinkyhead.com>
Date: Thu, 2 Apr 2020 12:54:46 -0500
Subject: [PATCH] Better push in 'mfpub'

---
 buildroot/share/git/mfpub | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/buildroot/share/git/mfpub b/buildroot/share/git/mfpub
index 8ec28ad489..53911d6d4e 100755
--- a/buildroot/share/git/mfpub
+++ b/buildroot/share/git/mfpub
@@ -67,11 +67,11 @@ if [[ $BRANCH == $TARG ]]; then
     # Allow working directly with the main fork
     echo
     echo -n "Pushing to origin/$TARG... "
-    git push -f origin
+    git push origin HEAD:$TARG
 
     echo
     echo -n "Pushing to upstream/$TARG... "
-    git push -f upstream
+    git push upstream HEAD:$TARG
 
   else