Skip to content

Commit 47a37c1

Browse files
committed
Minor update
1 parent 71224a0 commit 47a37c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

git_push.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#
44
# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update" "gitlab.com"
55

6-
git_user_id=$1
7-
git_repo_id=$2
6+
git_user_id="vviveksharma"
7+
git_repo_id="Password-Management/API-Client"
88
release_note=$3
99
git_host=$4
1010

@@ -50,8 +50,8 @@ if [ "$git_remote" = "" ]; then # git remote not defined
5050

5151
fi
5252

53-
git pull origin master
53+
git pull origin main
5454

5555
# Pushes (Forces) the changes in the local repository up to the remote repository
5656
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'
57+
git push origin main 2>&1 | grep -v 'To https'

0 commit comments

Comments
 (0)