I'm having issues reaching the public Github site (github.com) using existing tools in my workflow (Visual Studio Git, Git Extensions), due to firewall/proxy rules I haven't been able to straighten out yet.
In the meantime, I'd like to manually replicate the Github repo locally. I'm hoping there is a way to do this that I'm just missing (with the ZIP download?) I realize there are also Git commands to create patches (git-format-patch and git-bundle, see this answer), but I don't see any way to create those on the Github website. When I grab the download .zip file, there is no .git folder - maybe I don't need that?
Question: Is there a way to manually replicate a Github.com Git repository on a local PC, without using the cloning options?
I tried creating a bare repository using Git Extensions, so I already have a .git folder - can I just dump the contents of the zip into that folder? I'm concerned because I want to pull in a branch other than master, and I can see some of the files in .git reference master currently, and this also likely wouldn't have references to all the branches (though that might not matter).
I believe I need the git patch or bundle files, but not sure how to create those on Github. I could do that from my personal PC outside the firewall and use sneakernet, but it should be possible to just pull down from Github - right?
Note: I can get to the Github.com website, just cannot complete cloning through the tools properly, likely because they are not logged into our authenticator (i.e. through SAML/SSO). I tried using oauth, etc. but it's not working directly. Regardless - there should be a way to complete a manual clone, and I'd like to understand how to do that.