Skip to content

Commit

Permalink
Remove unnecessary options from CLI configuration
Browse files Browse the repository at this point in the history
Removed interactive, commit, and log options from CLI configuration
to simplify the interface and improve user experience.

Generated by gpt-3.5-turbo
  • Loading branch information
joone committed Feb 22, 2024
1 parent 208c37b commit 5a1774d
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,11 @@ const args = yargs
});
})
.options({
interactive: {
alias: "i",
describe: "Interactive mode",
},
git: {
alias: "g",
describe:
"Generate a Git commit message that summarizes the changes made in the diff",
},
commit: {
alias: "c",
describe: "Generate a Git commit message in the current git repository",
},
log: {
alias: "l",
describe:
// generated by copilot
"Log the conversation to a file. The file name is the current date and time",
},
})
.help()
.parseSync();
Expand Down

0 comments on commit 5a1774d

Please sign in to comment.