We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71224a0 commit 47a37c1Copy full SHA for 47a37c1
git_push.sh
@@ -3,8 +3,8 @@
3
#
4
# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update" "gitlab.com"
5
6
-git_user_id=$1
7
-git_repo_id=$2
+git_user_id="vviveksharma"
+git_repo_id="Password-Management/API-Client"
8
release_note=$3
9
git_host=$4
10
@@ -50,8 +50,8 @@ if [ "$git_remote" = "" ]; then # git remote not defined
50
51
fi
52
53
-git pull origin master
+git pull origin main
54
55
# Pushes (Forces) the changes in the local repository up to the remote repository
56
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
57
-git push origin master 2>&1 | grep -v 'To https'
+git push origin main 2>&1 | grep -v 'To https'
0 commit comments