From 7ad880998f9fb79124d506a2df727365cb7ffddc Mon Sep 17 00:00:00 2001 From: eshanized Date: Mon, 6 Jan 2025 14:06:19 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20chore:=20remove=20scope?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- push.sh | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/push.sh b/push.sh index fd64d1d5..cf80693f 100755 --- a/push.sh +++ b/push.sh @@ -3,12 +3,10 @@ # Author : ESHAN ROY # Author URI : https://eshanized.github.io -# NOTE : Run at your own risk! - # Define the conventional commit types with new emojis TYPES=("๐Ÿš€ feat" "๐Ÿ› fix" "๐Ÿ“ docs" "โœจ style" "๐Ÿ›  refactor" "โšก๏ธ perf" "๐Ÿ”ฌ test" "๐Ÿ”ง build" "๐Ÿค– ci" "๐Ÿงน chore" "โช revert") -# Function to display an error and exit +# Function to display an error and exit and error_exit() { echo -e "\033[1;31m[ERROR]\033[0m $1" exit 1 @@ -39,13 +37,6 @@ type_emoji=${type} type=${type_emoji#* } emoji=${type_emoji% *} -# Prompt the user to enter a scope (optional) -read -p "Enter a scope (optional): " scope -scope_part="" -if [ -n "$scope" ]; then - scope_part="($scope)" -fi - # Prompt the user to enter a short description read -p "Enter a short description: " desc if [ -z "$desc" ]; then @@ -56,26 +47,17 @@ fi read -p "Enter a longer description (optional): " long_desc # Create the commit message -commit_msg="$emoji $type$scope_part: $desc" +commit_msg="$emoji $type: $desc" # If a longer description was provided, add it to the commit message if [ -n "$long_desc" ]; then - commit_msg+=" - -$long_desc" + commit_msg+="\n\n$long_desc" fi # Print the commit message to the console echo -e "\nCommit message:" echo -e "\033[1;36m$commit_msg\033[0m" -# Confirm before committing -read -p "Do you want to proceed with this commit? (y/n): " confirm -if [[ "$confirm" != "y" && "$confirm" != "Y" ]]; then - echo "Commit aborted." - exit 0 -fi - # Stage all changes git add .