Reputation: 1610
Hi I'm working with GitBash to create a directory for my project, and then to clone the project from GitHub.com/... But the directory never appeared in Windows Explorer.
To be detailed:
mkdir TestForStackOverFlow
git clone https://github.com/udacity/Sunshine-Version-2.git
but i can't access this directory with windows explorer.
Images proving:
Before mkdir TestForStackOverflow
After mkdir TestForStackOverflow
Any guess how to fix it? Thanks in advance
Upvotes: 2
Views: 1711
Reputation: 1610
Finally was the COMODO firewall (version 6.2.282872.2847) who "auto sandbox" the GitBash without asking me.
I mark C:/Program Files/Git folder as Trusted and everything runs fine!
To do this on COMODO there is the steps:
Upvotes: 1
Reputation: 1326524
Try and see if the issue persists when using a more recent bash, namely the one package with the latest git-for-windows
(successor to msysgit)
Unzip PortableGit-2.4.4.2-3rd-release-candidate-64-bit.7z.exe
and launch its git-bash.exe
.
You will be using Git 2.4.4. On Windows.
Upvotes: 0