CopyPastor

Detecting plagiarism made easy.

Score: 0.8326895236968994; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2021-11-22
by Web Developer

Original Post

Original - Posted on 2009-06-12
by Joakim Elofsson



            
Present in both answers; Present only in the new answer; Present only in the old answer;

An optional prefix ! which negates the pattern; any matching file excluded by a previous pattern will become included again. If a negated pattern matches, this will override lower precedence patterns sources.
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-html -->
# Ignore everything *
# But not these files... !.gitignore !script.pl !template.latex # etc...
# ...even if they are in subdirectories !*/
# if the files to be tracked are in subdirectories !*/a/b/file1.txt !*/a/b/c/*
<!-- end snippet -->

> An optional prefix `!` which negates the pattern; any matching file excluded by > a previous pattern will become included again. If a negated pattern matches, > this will override lower precedence patterns sources.
<!-- language: sh -->
# Ignore everything * # But not these files... !.gitignore !script.pl !template.latex # etc...
# ...even if they are in subdirectories !*/ # if the files to be tracked are in subdirectories !*/a/b/file1.txt !*/a/b/c/*

        
Present in both answers; Present only in the new answer; Present only in the old answer;