I wanted to clone github directory from web locally on Windows 7. So I used following command -
git clone git://github address
I was expecting that it will get downloaded under current directory, which was c:/windows/system32
.
The output of the command is as follows -
C:\WINDOWS\system32>git clone https://github.com/Hvass-Labs/TensorFlow-Tutorials
.git
Cloning into 'TensorFlow-Tutorials'...
remote: Counting objects: 338, done.
rRemote: Total 338 (delta 0), reused 0 (delta 0), pack-reused 338eceiving object
Resolving deltas: 0% (0/158)
Resolving deltas: 100% (158/158), done.
Checking connectivity... done.
Checking out files: 100% (96/96), done.
But the cloned directory is nowhere in the path. Absolutely nowhere in the system. I tried current directory, entire C drive and entire D drive. But no luck. The repository was huge so I don't want to try cloning again. :(
Can someone please tell me under which directory Git clone downloads the github directory on Windows 7?