diff options
| author | Shulhan <ms@kilabit.info> | 2026-01-02 00:40:21 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2026-01-06 14:56:07 +0700 |
| commit | 18be916ab6f8911fd23d8f0a91f5a26f3c07f636 (patch) | |
| tree | ac6d36924c851e81cd539c4b7b3ee0d307c5df74 /lib/git/testdata/IsIgnored/foo/hello.go | |
| parent | 988ff4596d6fb600d0c94aeed41b5b17f1677032 (diff) | |
| download | pakakeh.go-18be916ab6f8911fd23d8f0a91f5a26f3c07f636.tar.xz | |
lib/git: add Git type with method IsIgnored
The Git type is for working with single git repository.
The [Git.IsIgnored] method is to check if the `path` is ignored by
git.
This is processed by matching it with all of the pattern in the
".gitignore" file from the path directory and its parent until the
root of Git repository.
Diffstat (limited to 'lib/git/testdata/IsIgnored/foo/hello.go')
| -rw-r--r-- | lib/git/testdata/IsIgnored/foo/hello.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/git/testdata/IsIgnored/foo/hello.go b/lib/git/testdata/IsIgnored/foo/hello.go new file mode 100644 index 00000000..b61e7105 --- /dev/null +++ b/lib/git/testdata/IsIgnored/foo/hello.go @@ -0,0 +1,4 @@ +// SPDX-License-Identifier: BSD-3-Clause +// SPDX-FileCopyrightText: 2025 M. Shulhan <ms@kilabit.info> + +package foo |
