diff options
author | Li Zhijian <lizhijian@fujitsu.com> | 2024-11-25 16:37:36 +0800 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-11-28 08:46:03 +0900 |
commit | 4198a4d25141c76021ae65368a5841843ee66098 (patch) | |
tree | 67e3a93cd2174cce341616ba4a09379acaf11dcf /.gitignore | |
parent | 18e9944e56f68423e52505066f79939e7d12a62b (diff) | |
download | lwn-4198a4d25141c76021ae65368a5841843ee66098.tar.gz lwn-4198a4d25141c76021ae65368a5841843ee66098.zip |
gitignore: Don't ignore 'tags' directory
W=1 builds reported warnings regarding files being ignored:
tools/testing/selftests/arm64/tags/.gitignore: warning: ignored by one of the .gitignore files
tools/testing/selftests/arm64/tags/Makefile: warning: ignored by one of the .gitignore files
tools/testing/selftests/arm64/tags/tags_test.c: warning: ignored by one of the .gitignore files
Adjusting the .gitignore entries will prevent these warnings and
ensure a smoother script execution.
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 56972adb5031..6c57bb0259c6 100644 --- a/.gitignore +++ b/.gitignore @@ -128,6 +128,7 @@ series # ctags files tags +!tags/ TAGS # cscope files |