Re: Ignore Visual Studio's Temp Files While Working with PG on Windows

From: Yasir <yasir(dot)hussain(dot)shah(at)gmail(dot)com>
To: Josef Šimánek <josef(dot)simanek(at)gmail(dot)com>
Cc: PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Re: Ignore Visual Studio's Temp Files While Working with PG on Windows
Date: 2024-05-18 19:26:11
Message-ID: CAA9OW9ciW9rb-sekTS6jg6tJ9v7ryjQA=T3=2XDE6BY4=kDV2Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

On Sat, May 18, 2024 at 7:27 PM Josef Šimánek <josef(dot)simanek(at)gmail(dot)com>
wrote:

> pá 17. 5. 2024 v 8:09 odesílatel Yasir <yasir(dot)hussain(dot)shah(at)gmail(dot)com>
> napsal:
> >
> > Hi Hackers,
> >
> > I have been playing with PG on the Windows platform recently. An
> annoying thing I faced is that a lot of Visual Studio's temp files kept
> appearing in git changed files. Therefore, I am submitting this very
> trivial patch to ignore these temp files.
>
> see
> https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer
> for various strategies
>
> Anyway if those are not files specific to your setup (like editor
> ones), but files which every PG hacker on Windows will generate as
> well (which is this case IMHO), it will make sense to add it into
> project's gitignore.
>

.vs directory and temp files within it are created once you open any of the
.sln, .vcproj or .vcxproj files (created with build command when PWD is
postgres/src/tools/msvc) in visual studio. It's a common practice that
developers use visual studio on codebase as it's mostly the default c/c++
files/projects editor.
So, it would be a common case for most of the developers with Windows
platform to add it in project's .gitignore.

> > Looking forward to the PG guru's guidance!
> >
> > Regards...
> >
> > Yasir Hussain
> > Principal Software Engineer
> > Bitnine Global Inc.
> >
>

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Yasir 2024-05-18 19:43:42 Re: Ignore Visual Studio's Temp Files While Working with PG on Windows
Previous Message Tom Lane 2024-05-18 18:31:52 pgsql: Account for optimized MinMax aggregates during SS_finalize_plan.

Browse pgsql-hackers by date

  From Date Subject
Next Message Yasir 2024-05-18 19:43:42 Re: Ignore Visual Studio's Temp Files While Working with PG on Windows
Previous Message Alexander Lakhin 2024-05-18 19:00:00 Re: Streaming read-ready sequential scan code