Skip to content

Commit

Permalink
#3 Feat: .
Browse files Browse the repository at this point in the history
  • Loading branch information
sachintha00 committed Jan 17, 2024
1 parent 6f9fa5d commit 640f4ca
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions helpers/do_branch.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,17 @@ async function doBranch() {
case doMenu.ADD_CHANGES:
await addChangesToRemote()
break;
case doMenu.SQUASH:
await squashCommitMessage()
break;
case doMenu.EXIT:
exit(0)
default:
break;
}
}

async function stash() {
async function stash() {
console.log("Under the development...")
}

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

Expand Down

0 comments on commit 640f4ca

Please sign in to comment.