0 votes
in Git by
Which command is used for writing a Commit Message in Git?

1 Answer

0 votes
by

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.

...