in reply to Re^3: Output to a >CSV file
in thread Output to a >CSV file

do it even if you're using version control tool like git

Sorry, that doesn't make any sense. That's exactly what a VCS is for.

Replies are listed 'Best First'.
Re^5: Output to a >CSV file
by Anonymous Monk on Jan 31, 2020 at 09:30 UTC

    Sorry, that doesn't make any sense. That's exactly what a VCS is for.

    Please explain.

      Wikipedia explains it well:

      At the simplest level, developers could simply retain multiple copies of the different versions of the program, and label them appropriately. This simple approach has been used in many large software projects. While this method can work, it is inefficient as many near-identical copies of the program have to be maintained. This requires a lot of self-discipline on the part of developers and often leads to mistakes. Since the code base is the same, it also requires granting read-write-execute permission to a set of developers, and this adds the pressure of someone managing permissions so that the code base is not compromised, which adds more complexity. Consequently, systems to automate some or all of the revision control process have been developed. This ensures that the majority of management of version control steps is hidden behind the scenes.