allow to push into remote, even if brach does not exist

This commit is contained in:
Tomas Votruba 2020-11-10 02:36:41 +01:00 committed by GitHub
parent eae1cf2f70
commit 9852c86807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,4 +48,4 @@ git status
git diff-index --quiet HEAD || git commit --message "$COMMIT_MESSAGE" git diff-index --quiet HEAD || git commit --message "$COMMIT_MESSAGE"
echo "Pushing git commit" echo "Pushing git commit"
git push origin "$TARGET_BRANCH" git push origin -u "$TARGET_BRANCH"