Add branch to push command.
This commit is contained in:
parent
980e37841e
commit
0280d88699
@ -420,12 +420,12 @@ setGitCommit() {
|
|||||||
setPushChanges() {
|
setPushChanges() {
|
||||||
# If the DRY variable is set to true, print a message indicating that this is a dry run and no changes will be made.
|
# If the DRY variable is set to true, print a message indicating that this is a dry run and no changes will be made.
|
||||||
if $DRY; then
|
if $DRY; then
|
||||||
_echo "[dry run] git push"
|
_echo "[dry run] git push origin ${VDM_REPO_BRANCH}"
|
||||||
_echo "[dry run] git push --tags"
|
_echo "[dry run] git push --tags"
|
||||||
else
|
else
|
||||||
# If the DRY variable is not set, try to push the changes and tags to the remote repository.
|
# If the DRY variable is not set, try to push the changes and tags to the remote repository.
|
||||||
# Redirect stdout and stderr to /dev/null to suppress output.
|
# Redirect stdout and stderr to /dev/null to suppress output.
|
||||||
git push >/dev/null 2>&1 || return 1
|
git push origin "${VDM_REPO_BRANCH}" >/dev/null 2>&1 || return 1
|
||||||
git push --tags >/dev/null 2>&1 || return 1
|
git push --tags >/dev/null 2>&1 || return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user