Devops/git
git commit "Author identity unknown"
문제점 git에 레포지토리를 만들어서 git 연습을 하던 와중에 git commit "Author identity unknown"라는 에러가 발생했다. 처음에는 왜 커밋이 안되지 생각을 하면서 구글링을 하다가 에러 설명에 친절히 설명되어 있는 것을 알 수 있었다. Author identity unknown *** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your Name" to set your account's default identity. Omit --global to set the identity only in this repository. ..