You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@teaclave.apache.org by yu...@apache.org on 2023/04/24 03:02:40 UTC

[incubator-teaclave-trustzone-sdk] 01/02: Make .gitignore more concise and precise

This is an automated email from the ASF dual-hosted git repository.

yuanz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-trustzone-sdk.git

commit e8d4da860e99413caff18010ee8a46045c3425dd
Author: Thomas Hebb <tc...@meta.com>
AuthorDate: Thu Apr 20 12:06:46 2023 -0400

    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
---
 .gitignore | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.gitignore b/.gitignore
index a7deff0..2ad8a27 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,9 +15,9 @@
 # specific language governing permissions and limitations
 # under the License.
 
-examples/**/proto/Cargo.lock
-**/*.rs.bk
+/examples/**/proto/Cargo.lock
+*.rs.bk
 .user_ta_header.o.d
-**/target
-optee/toolchains
-out
+target/
+/optee/toolchains
+/out


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org