We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82a335f commit 0ef81dfCopy full SHA for 0ef81df
src/controller/ignore.go
@@ -181,6 +181,10 @@ func Ignore(cmd *cobra.Command, args []string) {
181
}
182
template := selectGitignoreTemplate(templates)
183
gitignoreTemplateContent := splitStringByNewLine(template.contents)
184
+
185
+ // Add .gut to the gitignore template
186
+ gitignoreTemplateContent = append(gitignoreTemplateContent, ".gut")
187
188
// Get the difference between the local .gitignore and the gitignore template
189
diff := Difference(gitignoreContent, gitignoreTemplateContent)
190
// Append the difference to the local .gitignore
0 commit comments