From a08bd48165649d4bc2a7c6ec175da6927c067276 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= Date: Fri, 16 Jan 2026 15:12:50 +0900 Subject: [PATCH] Unignore source files From gitignore(5): > * The slash "/" is used as the directory separator. > Separators may occur at the beginning, middle or end > of the .gitignore search pattern. > * If there is a separator at the beginning or middle (or both) > of the pattern, then the pattern is relative to the directory level > of the particular .gitignore file itself. Otherwise the pattern > may also match at any level below the .gitignore level. Fixes: 840358a4aeee ("Fix and tell git to ignore build artifacts") --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 504decb..d5ff9d7 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,5 @@ *.o *.a src/e9patch/e9loader_*.c -e9patch -e9tool +/e9patch +/e9tool