From 4b4fa6d8b9b980c2d0c114f58964cb60aae63f1e Mon Sep 17 00:00:00 2001 From: Michael Pavling Date: Tue, 25 Jul 2017 09:05:14 +0100 Subject: [PATCH] adding to the recommendation of doing an interactive 'git add' to show the shortcut to patching --- common-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common-flow.md b/common-flow.md index 6135920..e546624 100644 --- a/common-flow.md +++ b/common-flow.md @@ -176,7 +176,7 @@ interpreted as described in [RFC 2119](https://tools.ietf.org/html/rfc2119). documentation: 2. You SHOULD never blindly commit all changes with "git commit -a". It is - RECOMMENDED you use "git add -i" to add individual changes to the staging + RECOMMENDED you use "git add -p" or "git add -i" to add individual changes to the staging area so you are fully aware of what you are committing. 3. You SHOULD always use "--force-with-lease" when doing a force push. The regular "--force" option is dangerous and destructive. More