From 9f01e7a3ba48537055cd94071b86252a0626108c Mon Sep 17 00:00:00 2001 From: Rodolfo Carvalho Date: Fri, 23 Aug 2019 22:05:18 +0200 Subject: [PATCH] update .gitignore: track cobra subdirectory (#936) The 'cobra' entry on .gitignore was meant to ignore a potential 'cobra' executable generated by 'go build' during development. However, 'cobra' is a directory containing the command line tool, and such a generic entry in .gitignore ignores too much. Instead of the generic 'cobra' entry, ignore only a specific '/cobra/cobra' path. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b2b848e77..208e7d741 100644 --- a/.gitignore +++ b/.gitignore @@ -32,7 +32,7 @@ Session.vim tags *.exe -cobra +/cobra/cobra cobra.test .idea/