diff options
author | Fujii Masao <fujii@postgresql.org> | 2014-12-18 19:56:42 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2014-12-18 19:56:42 +0900 |
commit | ccf292cd2ec16c69ddfee3bf72afe113a7595e00 (patch) | |
tree | 69b85765e01847d8aa142902b874bfa6a4893889 | |
parent | 72950dc1d02c6b44c6475485fd5ef8ac277bbdd0 (diff) | |
download | postgresql-ccf292cd2ec16c69ddfee3bf72afe113a7595e00.tar.gz postgresql-ccf292cd2ec16c69ddfee3bf72afe113a7595e00.zip |
Update .gitignore for config.cache.
Also add a comment about why regreesion.* aren't listed in .gitignore.
Jim Nasby
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | src/test/regress/.gitignore | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 681af08c5cf..715f8179545 100644 --- a/.gitignore +++ b/.gitignore @@ -28,6 +28,7 @@ lib*.pc # Local excludes in root directory /GNUmakefile +/config.cache /config.log /config.status /pgsql.sln diff --git a/src/test/regress/.gitignore b/src/test/regress/.gitignore index 7573addc94d..173f995d240 100644 --- a/src/test/regress/.gitignore +++ b/src/test/regress/.gitignore @@ -5,3 +5,7 @@ /tmp_check/ /results/ /log/ + +# Note: regreesion.* are only left behind on a failure; that's why they're not ignored +#/regression.diffs +#/regression.out |