From 73ee2a225bf395b1a9bac07ce73376d7385fa696 Mon Sep 17 00:00:00 2001 From: Dakota Vradenburg <41351006+DakotaV6@users.noreply.github.com> Date: Fri, 23 Nov 2018 18:37:10 -0500 Subject: [PATCH] Corrected spelling of systematic (#25451) --- guide/english/git/git-commit/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/git/git-commit/index.md b/guide/english/git/git-commit/index.md index 6ff196ef11..631d2e36e0 100644 --- a/guide/english/git/git-commit/index.md +++ b/guide/english/git/git-commit/index.md @@ -46,7 +46,7 @@ The output in your terminal should look something like this: ``` ### Using detailed commit messages -Although `git commit -m "commit message"` works just fine, it can be useful to provide more detailed and systmatic information. +Although `git commit -m "commit message"` works just fine, it can be useful to provide more detailed and systematic information. If you commit without using the `-m` option, git will open your default text editor with a new file, which will include a commented-out list of all the files/changes that are staged in the commit. You then write your detailed commit message (the first line will be treated as the subject line) and the commit will be performed when you save/close the file.