I have computer with Windows XP and no Internet connection, only access to network drive. I\'d like to set up a git repository on the network drive and then push to it from
There's a similar (but not quite the same) issue discussed on the msysGit mailing list (and back when it was active, the issue-tracker). While that issue is about the "Git bash here"-feature from UNC, the solution might be similar. Perhaps some of these links will help you find a solution:
And if you find a solution, please consider to submit the fix back to the msysGit project :)
First open a windows console, Run->cmd
pushd \\172.158.1.254\network_usb
now you should be able to 'cd' through all the directories on the drive. Optionally you can type a
git init --bare nameOfnewRepo.git
somewhere.
popd
Now open git bash and cd to the location where you want to clone the repo on the network drive
git clone //172.158.1.254/network_usb/pathto/nameOfnewRepo.git
Note that in git bash the slashes are forward and in the windows console backward.
It seems that there is a register value that allows to use UNC paths on cmd. You can set up the register by running this on cmd:
reg add “HKCU\Software\Microsoft\Command Processor” /v DisableUNCCheck /t REG_DWORD /d 0x1 /f
Source
As Konstantin said, "//comp1/Proj/git/SDK/" works fine as a UNC path.
Others mentioned poor performance using a remote file system, which I cannot reproduce. Cloning the same repo took 3min45 through encrypted VPN file system access and 3min25 through unencrypted HTTP (Bonobo Git Server). The secure channel + windows authentication for repo access is certainly worth the extra 10%.
Note that Cygwin's "git" command does not work with this remote path. The git.exe that comes bundled with GitExtensions works fine, VS2015 works fine too.
Just use the UNC path - git
doesn't care what cmd
can and cannot do.
Old answer: Bind the UNC path to a drive letter (or use a directory symlink).
Check if you actually have access to your local drive. Installing it there would be the easiest solution.