Also ignore changes to ignored dirs themselves

This commit is contained in:
Matt Green 2017-05-10 12:02:49 -04:00
parent f4774d6f8c
commit 6ebb7bc7b3
1 changed files with 3 additions and 3 deletions

View File

@ -141,9 +141,9 @@ pub fn get_args() -> Args {
let default_ignores = vec![format!("*{}.DS_Store", MAIN_SEPARATOR),
String::from("*.pyc"),
String::from("*.swp"),
format!("*{}.git{}*", MAIN_SEPARATOR, MAIN_SEPARATOR),
format!("*{}.hg{}*", MAIN_SEPARATOR, MAIN_SEPARATOR),
format!("*{}.svn{}*", MAIN_SEPARATOR, MAIN_SEPARATOR)];
format!("*{}.git{}**", MAIN_SEPARATOR, MAIN_SEPARATOR),
format!("*{}.hg{}**", MAIN_SEPARATOR, MAIN_SEPARATOR),
format!("*{}.svn{}**", MAIN_SEPARATOR, MAIN_SEPARATOR)];
if args.occurrences_of("no-default-ignore") == 0 {