Skip to content

Commit

Permalink
fix: use conventional commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisGorbachev committed Jul 29, 2024
1 parent 0cc28b2 commit 97126e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Options:
--repo-commit-args <REPO_COMMIT_ARGS>
Shell command to make a commit (supports substitutions - see help below)
[default: "git commit -m \"Setup project\""]
[default: "git commit -m \"feat: setup project\""]
--repo-push-args <REPO_PUSH_ARGS>
Shell command to push the commit (supports substitutions - see help below)
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ pub struct CreateRustGithubRepo {
#[arg(long, help = "Shell command to add new files (supports substitutions - see help below)", default_value = "git add .")]
repo_add_args: String,

#[arg(long, help = "Shell command to make a commit (supports substitutions - see help below)", default_value = "git commit -m \"Setup project\"")]
#[arg(long, help = "Shell command to make a commit (supports substitutions - see help below)", default_value = "git commit -m \"feat: setup project\"")]
repo_commit_args: String,

#[arg(long, help = "Shell command to push the commit (supports substitutions - see help below)", default_value = "git push")]
Expand Down

0 comments on commit 97126e0

Please sign in to comment.