From 069e2a09dd06fb103f91fe632b9683ec3c2cd060 Mon Sep 17 00:00:00 2001 From: DavidDGTNT Date: Tue, 16 Nov 2021 20:10:09 +0000 Subject: [PATCH] Added push to both main Git and GitHub mirror scripts --- pushtoboth.bat | 2 ++ pushtoboth.sh | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 pushtoboth.bat create mode 100644 pushtoboth.sh diff --git a/pushtoboth.bat b/pushtoboth.bat new file mode 100644 index 0000000..e3931e2 --- /dev/null +++ b/pushtoboth.bat @@ -0,0 +1,2 @@ +git push --set-upstream origin +git push --set-upstream ghmirror \ No newline at end of file diff --git a/pushtoboth.sh b/pushtoboth.sh new file mode 100644 index 0000000..475a3bf --- /dev/null +++ b/pushtoboth.sh @@ -0,0 +1,3 @@ +#!/bin/sh +git push --set-upstream origin +git push --set-upstream ghmirror \ No newline at end of file