Skip to content

Commit 5d0e7d6

Browse files
author
Thomas Hebb
committed
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 9eb7ff8 commit 5d0e7d6

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)