[Solved] How to download from https://gitweb.torproject.org

Just execute the command: git clone https://git.torproject.org/builders/tor-browser-build.git It will clone the repository into the current working directory. The link is different because attempting to clone Tor source code from the link provided by the OP yields this error: fatal: repository ‘https://gitweb.torproject.org/builders/tor-browser-bundle.git/‘ not found 10 solved How to download from https://gitweb.torproject.org

[Solved] Git repos on new hard drive [closed]

The answer was that the .git folders were missing. The issue had nothing to do with when the folder was copied, but how. The various folders in which git worked fine were pushed from the old drive to the new via Windows Explorer; the .git files got pushed with them. The offending folders, however, were … Read more

[Solved] Can’t install distlearn through a firewall

The rockspec code has a built-in, tacit requirement to use git protocol. From behind a firewall, one must use HTTPS. luarocks has no proxy environment variable to configure this from the command line, so the installation fails. Fortunately, there is a way to reconfigure git: sudo git config –global url.”https://”.insteadOf git:// This forces all git … Read more