I want to initialize a folder for a new HTML project. The folder is called HTML. I want to create ".git"(repository?) in that folder. Here is what I keep getting after I put "git init" after my folder name:
dyld: lazy symbol binding failed: Symbol not found: ___strlcpy_chk
Referenced from: /usr/local/git/bin/git
Expected in: /usr/lib/libSystem.B.dylib
dyld: Symbol not found: ___strlcpy_chk
Referenced from: /usr/local/git/bin/git
Expected in: /usr/lib/libSystem.B.dylib
What does this mean? Is there another command I should use? I need to initialize the folder so that .git comes up.
I've tried to fix this on my own by using different folders and nothing is getting created under "git init". Git is properly installed on my Mac.