0 votes
in Git Slack Integration by

What is the command you can use to write a commit message?

1 Answer

0 votes
by
Git

The command that is used to write a commit message is “git commit –a”.  The –a on the command line instructs git to commit the new content of all tracked files that have been modified. You can use “git add<file>” before git commit –a if new files need to be committed for the first time.

Related questions

+2 votes
asked Jul 26, 2019 in Git Slack Integration by sheetalkhandelwal
0 votes
asked May 21, 2020 in Git by SakshiSharma
...