From 7defc73b4dece7ac78ebcb2de61621c036859930 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Mon, 16 Feb 2015 22:55:20 -0600 Subject: [PATCH] Add Verbose Commit Message to til. --- git/verbose-commit-message.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 git/verbose-commit-message.md diff --git a/git/verbose-commit-message.md b/git/verbose-commit-message.md new file mode 100644 index 0000000..e2dfd69 --- /dev/null +++ b/git/verbose-commit-message.md @@ -0,0 +1,10 @@ +# Verbose Commit Message + +Git allows you to display a *diff* of the staged changes in the commit +message buffer. This gives you the opportunity to carefully craft your +commit message in a way that accurately describes the changes being +committed. To display the diff when committing: + +```bash +$ git commit -v +```