fatal : this operation must be run in a work tree!
해당 오류가 나오면, “git –work-tree=/<경로> 명령어”로 대처한다.
please tell me who you are…
이라는 오류가 나오면, 다음과 같이 해결한다.
git init
git config user.name “someone”
git config user.email “someone@someplace.com”
git add *
git commit -m “some init msg”