From 74342ea684ed3d19c611c45efd56dcacc0041179 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Mon, 5 Feb 2024 20:56:13 +0100 Subject: [PATCH] git: add `git add --update` notes --- docs/misc/git.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/misc/git.md b/docs/misc/git.md index a192e3d..eacc6a9 100644 --- a/docs/misc/git.md +++ b/docs/misc/git.md @@ -98,8 +98,9 @@ def load_reference(name_or_id): ### Making Changes `git status`: shows the status of changes as untracked, modified, or staged -`git add `: add files to the staging area -`git add -p|--patch `: interactively stage chunks of a file +`git add `: add files contents to the staging area +`git add -u|--update `: stage changes but ignore untracked files +`git add -p|--patch `: interactively stage chunks of files `git blame `: show who last edited which line `git blame -L , -- `: Annotate only the line range given by `,`, within the ``