From f7ac6d21b6f857c128f2a9478b5b6a9dde62c209 Mon Sep 17 00:00:00 2001 From: Anchal Date: Tue, 11 Aug 2015 12:19:37 +0530 Subject: [PATCH] alternative for cleaning untracked directory --- README.md | 6 ++++++ tips.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 138fe60..0206762 100644 --- a/README.md +++ b/README.md @@ -317,5 +317,11 @@ git clean -f git clean -f -d ``` + +__Alternatives:__ +```sh +git clean -df +``` + diff --git a/tips.json b/tips.json index 843d513..f9dd009 100644 --- a/tips.json +++ b/tips.json @@ -181,6 +181,6 @@ { "title": "Forcefully remove untracked directory", "tip": "git clean -f -d", - "alternatives": "git clean -df" + "alternatives": ["git clean -df"] } ]