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.
Please check this thread: git + mountain lion + dyld: lazy symbol binding failed: Symbol not found: ___strlcpy_chk
It is for a very similar issue on Mac. What is your Mac OS X version? Did you ever used/configured git on this Mac before? Can you run commands like
git --version
orgit config -l
?