From 1f2ce49e89bc7766d293c0191fcff33a2f73c277 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Sun, 12 Sep 2021 11:55:37 -0700 Subject: [PATCH] docs: remove unnecessary `git` steps in git-comparison doc The table describes the simplified Git workflow of always using `git commit -a`. With that workflow, you don't need to `git add` or `git rm` to stage changes. --- docs/git-comparison.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/git-comparison.md b/docs/git-comparison.md index 7b6136f92..893fd54f4 100644 --- a/docs/git-comparison.md +++ b/docs/git-comparison.md @@ -71,12 +71,12 @@ commit), but that's left out of the table to keep it simple. For example, Remove a file from the current change rm filename - git rm filename + rm filename Modify a file in the current change echo stuff >> filename - echo stuff >> filename; git add filename + echo stuff >> filename Finish work on the current change and start a new change