diff options
author | Paul Menzel <pmenzel@molgen.mpg.de> | 2020-07-02 13:12:00 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-07-05 16:15:46 +0900 |
commit | ba77dca584f5abf30340672bc752fe7912731af5 (patch) | |
tree | 2b551720fdef64fa621235eb6602f743d6405988 | |
parent | 7f58b487e9ff3ff0f5f29a57172295a41f08a6b5 (diff) | |
download | linux-ba77dca584f5abf30340672bc752fe7912731af5.tar.gz linux-ba77dca584f5abf30340672bc752fe7912731af5.tar.bz2 linux-ba77dca584f5abf30340672bc752fe7912731af5.zip |
.gitignore: Do not track `defconfig` from `make savedefconfig`
Running `make savedefconfig` creates by default `defconfig`, which is,
currently, on git’s radar, for example, `git status` lists this file as
untracked.
So, add the file to `.gitignore`, so it’s ignored by git.
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
-rw-r--r-- | .gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 87b9dd8a163b..d5f4804ed07c 100644 --- a/.gitignore +++ b/.gitignore @@ -143,6 +143,9 @@ x509.genkey /allrandom.config /allyes.config +# Kconfig savedefconfig output +/defconfig + # Kdevelop4 *.kdev4 |