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...") }