sraoss / pg_ivm

IVM (Incremental View Maintenance) implementation as a PostgreSQL extension
Other
994 stars 27 forks source link

Add .gitignore file? #101

Closed reshke closed 1 month ago

reshke commented 1 month ago

If one builds this extension, and develops some patch, some unneeded files may be added to commit (.o, .so)

reshke commented 1 month ago
reshke@yezzey-bionic:~/pg/pg_ivm$ git status
On branch main
Your branch is up to date with 'origin/main'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)

    modified:   createas.c
    modified:   pg_ivm.c
    modified:   pg_ivm.h

Untracked files:
  (use "git add <file>..." to include in what will be committed)

    createas.o
    matview.o
    pg_ivm.o
    pg_ivm.so
    ruleutils.o
    subselect.o
yugo-n commented 1 month ago

Thank you for your suggestion.

Adding .gitignore for .o and .so seems nice since it would make someone's life easier.

reshke commented 1 month ago

ok, i created one from github template https://github.com/sraoss/pg_ivm/pull/103

yugo-n commented 1 month ago

Thank you! I'll review it.

yugo-n commented 1 month ago

103 is merged.