From 9ac4b5be057ac2b7c06dcf281c07c3101986d81b Mon Sep 17 00:00:00 2001 From: Anchal Date: Tue, 11 Aug 2015 11:48:14 +0530 Subject: [PATCH] get list of untracked files/directory --- README.md | 4 ++-- tips.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 26e2fe8..138fe60 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ * [Show all ignored files](https://github.com/git-tips/tips#show-all-ignored-files) * [Create new working tree from a repository (git 2.5)](https://github.com/git-tips/tips#create-new-working-tree-from-a-repository-git-25) * [Create new working tree from HEAD state](https://github.com/git-tips/tips#create-new-working-tree-from-head-state) -* [Before deleting untracked files/directory, do a dry run to get the list of untracked files/directory](https://github.com/git-tips/tips#before-deleting-untracked-filesdirectory-do-a-dry-run-to-get-the-list-of-untracked-filesdirectory) +* [Before deleting untracked files/directory, do a dry run to get the list of these files/directories](https://github.com/git-tips/tips#before-deleting-untracked-filesdirectory-do-a-dry-run-to-get-the-list-of-these-filesdirectories) * [Forcefully remove untracked files](https://github.com/git-tips/tips#forcefully-remove-untracked-files) * [Forcefully remove untracked directory](https://github.com/git-tips/tips#forcefully-remove-untracked-directory) @@ -302,7 +302,7 @@ git worktree add -b git worktree add --detach HEAD ``` -## Before deleting untracked files/directory, do a dry run to get the list of untracked files/directory +## Before deleting untracked files/directory, do a dry run to get the list of these files/directories ```sh git clean -n ``` diff --git a/tips.json b/tips.json index 7bfb4aa..3f4034e 100644 --- a/tips.json +++ b/tips.json @@ -171,7 +171,7 @@ "tip": "git worktree add --detach HEAD" }, { - "title": "Before deleting untracked files/directory, do a dry run to get the list of untracked files/directory", + "title": "Before deleting untracked files/directory, do a dry run to get the list of these files/directories", "tip": "git clean -n" }, {