Skip to content

Commit

Permalink
change git command (#1402)
Browse files Browse the repository at this point in the history
> git commit -a "Initial Commit"
> fatal: paths 'Initial Commit ...' with -a does not make sense
% git commit -am "Initial Commit"
Works
  • Loading branch information
sdelamo authored Dec 19, 2023
1 parent 0f9f1b3 commit 60d1546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/adding-commit-info/adding-commit-info.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The project aims to demonstrate how to provide Git commit information to the
cd micronautguide
git init
git add .
git commit -a "Initial project"
git commit -am "Initial project"
----

== Management
Expand Down

0 comments on commit 60d1546

Please sign in to comment.