From 1429eb06a44966c29fdbeafeff76cbcbaa819adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Su=20Zhang=20=28=E5=BC=B5=E7=94=A6=29?= Date: Thu, 16 Nov 2017 06:11:36 -0500 Subject: [PATCH] Ignore Vim swap files (*.swp, *.swo) (#12080) *.swp and *.swo files are temporary files generated when editing buffers in Vim and should never be committed. https://stackoverflow.com/questions/4824188/git-ignore-vim-temporary-files --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index c3d981ed09207..29de53f187e29 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,5 @@ build-system/runner/TESTS-TestSuites.xml /test/manual/amp-ad.adtech.html test/coverage package-lock.json +*.swp +*.swo