Comment by godelski

Comment by godelski 10 months ago

5 replies

  > Do people really fall for scam like that?
I routinely get people opening issues on my projects asking where the source code is or how to fine tune their models on different data or even how to install pytorch.... There's a lot of people on GitHub that don't know the first thing about coding. There's a lot of people on GitHub that don't know how to use Google... This even includes people with PhDs...
NeveHanter 10 months ago

I've also seen an issue on GitHub asking project author to add an entry in README.md with instructions on how to clone the repository...

  • tom_ 10 months ago

    Actually worth doing if the repo uses submodules.

    • godelski 10 months ago
      • keybored 10 months ago

        The naive way in this case wouldn’t be to make an issue: How do I clone this repo? I see it has submodules

        The naive way would be to just clone the repo without any (apparently) options.

        I can attest to this because that’s probably what I would do.

        The readme would not resolve a problem that someone knowingly had. It would resolve an unknown upcoming problem.

      • tom_ 10 months ago

        Yeah, git clone --recursive is the main thing I suggest. But unlike Google I include the exact command that you can copy and paste into the terminal to clone the specific repo in question.

        And if you're reading the README after cloning it already, there are instructions for sorting that out too, also suitable for copy and paste.

        Or if you downloadeded the ZIP from GitHub - I'm sorry. But you won't be left too confused, at least you won't if you read my README, because my README covers this situation as well.

        (Also: don't forget to git submodule update after changing branch! But if you're noting everything my README tells you, you won't.)