Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYounes Manton <ymanton@ca.ibm.com>2022-08-25 06:07:25 +0300
committerAndrei Vagin <avagin@gmail.com>2022-08-29 00:34:33 +0300
commit3aafc55e90a256fec535e66ef52b0fde55514dc6 (patch)
tree2d859757e4bc9881a24796eead03d75cb19e7897
parent309e1315fb675e69fa6d1a39eddb97f196cb5296 (diff)
gitignore: Ignore top-evel build dir only
The entry "build/" will ignore any directory named "build" at any level of the source tree, including our scripts/build directory. We only want to ignore the top-level build directory created by `make install`. As the git manpage suggests, entries with slashes at the start or in the middle will only match at the same level as the .gitignore, hence use build/** instead. Signed-off-by: Younes Manton <ymanton@ca.ibm.com>
-rw-r--r--.gitignore2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index d5135f5f8..23894d631 100644
--- a/.gitignore
+++ b/.gitignore
@@ -42,4 +42,4 @@ lib/.crit-setup.files
compel/include/asm
include/common/asm
include/common/config.h
-build/
+build/**