From 6f9da53416ecb7e895a3ccdd60b07cda35937683 Mon Sep 17 00:00:00 2001 From: Ilan Volow Date: Thu, 16 Apr 2020 22:54:30 -0400 Subject: [PATCH] Reworking documentation --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 825368f..0cc4210 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,10 @@ To run the logitall script with the newly added ignores, you would run the follo __logitall__ __---ignore-config__ __my-projects-logitall-ignore__ + #### Undoing logitall -The best, most safest way to use logitall is to make a complete duplicate of your project folder and run logitall on a copy of your code. If you are reasonably proficient with git, you could make sure all your changes prior to running logitall are stashed/committed, check out a branch, and then run logitall on the branch. You could also run logitall on your working branch (again with all changes stashed/committed), and then do a git checkout -- name_of_directory_you_ran_logitall_on to get rid of the changes logitall made. +* The best, most safest way to use logitall is to make a complete duplicate of your project folder and run logitall on a copy of your code. +* If you are reasonably proficient with git, you could make sure all your changes prior to running logitall are stashed/committed, check out a branch, and then run logitall on the branch. +* You could also run logitall on your working branch (again with all changes stashed/committed), and then do a +* ```git checkout -- name_of_directory_you_ran_logitall_on``` to get rid of the changes logitall made.