Skip to content

Commit e8d4da8

Browse files
Thomas HebbDemesneGH
authored andcommitted
Make .gitignore more concise and precise
Several of the patterns match files when they should only match directories, match anywhere in the repo when they should only match at the root, start with an unneeded `**/`, or a combination of all three. Fix all such issues as per the .gitignore documentation[1]. [1] https://git-scm.com/docs/gitignore
1 parent 7a7d847 commit e8d4da8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
examples/**/proto/Cargo.lock
19-
**/*.rs.bk
18+
/examples/**/proto/Cargo.lock
19+
*.rs.bk
2020
.user_ta_header.o.d
21-
**/target
22-
optee/toolchains
23-
out
21+
target/
22+
/optee/toolchains
23+
/out

0 commit comments

Comments
 (0)