0 votes
in Git by (30.8k points)
Which command is used for writing a Commit Message in Git?

1 Answer

0 votes
by (19.8k points)

The command used for passing on a message to a git commit is git commit -m “commit message”. The flag m is used to pass a commit message.

...