Skip to content

Commit

Permalink
added tags
Browse files Browse the repository at this point in the history
  • Loading branch information
PIYUSH-MISHRA-00 committed Aug 17, 2022
1 parent 28a3a78 commit 5fdbe1d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions github.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,15 @@ case $choice in
git config --global user.signingkey $echo$GPG
git init
git add .
echo "Enter Commit message: "
read message
git commit -m $echo "$message"
echo "Enter Tag name: (Press enter if you want to skip the tag name)"
read tag
echo "Enter Tag message: (Press enter if you want to skip the tag message)"
read tag_message
echo "Enter Commit message: "
read message
git tag -a $echo$tag -m "$echo$tag_message"
git commit -m $echo "$message"
git tag -n

for i in "${!map[@]}"
do
Expand Down

0 comments on commit 5fdbe1d

Please sign in to comment.