2

I'm having trouble cloning one of my private repositories into my computer. Currently I've tried both using the application and the console and neither work.

Using the application: No errors are specifically shown, but upon the completion of the clone the diff shows I already deleted a file, con.py enter image description here


Upon attempting to clone using the console , I actually something i've never seen before: enter image description here

It doesn't grab all of the objects...and then goes on to print out the entire file it deletes right afterwards which is weird.

I tried looking up solutions with no luck, moving the directory to a shorter path did nothing as most sites recommended. Please help!

Syntactic Fructose
  • 18,936
  • 23
  • 91
  • 177

1 Answers1

1

con is a reserved name in windows so it can't exist on a windows machine.

One thing you can do is to change the name of your file and that should do the trick.

Maurizio In denmark
  • 4,226
  • 2
  • 30
  • 64