diff options
author | Andrey Skvortsov <[email protected]> | 2015-04-16 12:49:24 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2015-04-17 09:04:11 -0400 |
commit | f4ae9497288336e9a1900e8e351edf71e27b6944 (patch) | |
tree | 05755f001bf9007d9c495c0402a60674daf4e8a5 | |
parent | 17b199d62d7fd732ba02c13433e438ebb368aac9 (diff) |
.gitignore: ignore *.tar
Running make tar-pkg results in following:
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# linux-4.0.0-rc3-next-20150313-150225--x86.tar
This patch makes git ignore *.tar files.
Running 'git ls-files -i --exclude-standard' does not show any
tar files excluded from tracking after the change.
Signed-off-by: Andrey Skvortsov <[email protected]>
Cc: Michal Marek <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: Boaz Harrosh <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: Benjamin Romer <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index acb6afe6b7a3..4ad4a98b884b 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,7 @@ *.order *.elf *.bin +*.tar *.gz *.bz2 *.lzma |