I want to clone a GIT repo and NOT end up with a .git
directory. In other words I just want the files. Is there a way to do this?
git clone --no-checkout
did the exact opposite of what I want (gave me just the .git
directory).
I am trying to do that for a remote repo, not a local one, meaning this is not a duplicate of "How to do a “git export” (like “svn export”)" (even though the solution might end up being the same).