From 1f2e1475ef70f6708a270c6c4f05ef290846433e Mon Sep 17 00:00:00 2001 From: tiyn Date: Sat, 14 Oct 2023 03:04:29 +0200 Subject: [PATCH] linux: corrected typo --- wiki/linux/git_(client).md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/linux/git_(client).md b/wiki/linux/git_(client).md index fe2f5f1..fffc114 100644 --- a/wiki/linux/git_(client).md +++ b/wiki/linux/git_(client).md @@ -26,11 +26,11 @@ There is also an interactive ### Ignore files having local changes If you need to make changes to a file that are local you can run -`config update-index --skip-worktree `. +`git update-index --skip-worktree `. Following this the file won't show up as having changes from the upstream. Note that files tagged with this command are checked out sparsly, so you need to watch out for changes yourself if there are any. -To revert this run `config update-index --no-skip-worktree `. +To revert this run `git update-index --no-skip-worktree `. ### Authentication via SSH