I made a small utility for listing the file names inside an archive file, e.g. tar, zip, etc. This comes in handy when you download some software package using the command line but you aren’t sure whether to extract it in its own folder because you don’t know what the file structure inside is.

  • BrianTheeBiscuiteer@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    8 days ago

    Disagree on the .gitignore file. If you’re the only developer and you only work off of one machine then it doesn’t need to be committed. In a team setting it’s absolutely imperative to commit it.

      • nous@programming.dev
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        8 days ago

        You never want build artifacts to be committed. You don’t want to have everyone working on your project to need to setup their own gitignore for every project. So it makes sense to have a common commited gitignore for files the project produces that should never be tracked by git.

        I dislike when people put in editor files in the gitignore though. People should setup global ones for their local tooling.

      • BrianTheeBiscuiteer@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        8 days ago

        How do you ensure your teammates don’t start committing their own IDE settings or committing “secrets.json” files or helper scripts or log files?