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

0 votes
asked Sep 4, 2020 in Git by Robindeniel
0 votes
asked May 21, 2020 in Git by SakshiSharma
0 votes
asked May 23, 2020 in NoSQL by Robindeniel
0 votes
asked Dec 1, 2019 in DevOps by SakshiSharma
...