From 640f4ca72c450d3d67891cc352b8ac96ac432959 Mon Sep 17 00:00:00 2001 From: sachintha00 Date: Wed, 17 Jan 2024 08:44:29 +0530 Subject: [PATCH] #3 Feat: . --- helpers/do_branch.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/helpers/do_branch.js b/helpers/do_branch.js index 856bd4c..b994fe7 100644 --- a/helpers/do_branch.js +++ b/helpers/do_branch.js @@ -16,6 +16,9 @@ async function doBranch() { case doMenu.ADD_CHANGES: await addChangesToRemote() break; + case doMenu.SQUASH: + await squashCommitMessage() + break; case doMenu.EXIT: exit(0) default: @@ -23,7 +26,7 @@ async function doBranch() { } } -async function stash() { +async function stash() { console.log("Under the development...") } @@ -33,11 +36,11 @@ async function addChangesToRemote() { await commitAndPush(commitMessage) } -async function squashCommitMessage() { +async function squashCommitMessage() { console.log("Under the development...") } -async function tagRelease() { +async function tagRelease() { console.log("Under the development...") }