Skip to content

Commit

Permalink
Make .gitignore more concise and precise
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tchebb committed Apr 20, 2023
1 parent 9eb7ff8 commit 5d0e7d6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5d0e7d6

Please sign in to comment.